From 66050ded80f20f5e5f1080ce2eb23c04b82667dc Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Wed, 21 Feb 2024 10:28:55 +0000 Subject: [PATCH] v2.2.1 Name change of libs and archives to reflect fujinet-network to fujinet-lib name change --- Changelog.md | 7 +++++++ Makefile | 10 +++++----- fujinet-io.h | 2 ++ version.txt | 2 +- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/Changelog.md b/Changelog.md index b1cc649..83be697 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,13 @@ ## [Unreleased] +## [2.2.1] - 2024-02-21 + +- Renamed libs and archives to reflect name change from "fujinet-network" to "fujinet-lib" +- Libs are now "fujinet-{target}-{version}.lib +- Zips is now fujinet-lib-{target}-{version}.zip +- Header and include files are still fujinet-io.{h,inc} and fujinet-network.{h,inc} to represent their sub-function within fujinet-lib + ## [2.2.0] - 2024-02-20 - Change signature of fn_io_mount_disk_image, and fn_io_mount_host_slot to return an error code, so all fn_io_mount* functions are consistent (fixes #2). diff --git a/Makefile b/Makefile index 69ec755..7b624c1 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ TARGETS := atari apple2 commodore # Name of the final, single-file library. -PROGRAM := fujinet-network.lib +PROGRAM := fujinet.lib # Path(s) to additional libraries required for linking the program # Use only if you don't want to place copies of the libraries in SRCDIR @@ -311,15 +311,15 @@ clean: dist: $(PROGRAM) $(call MKDIR,dist/) - $(call RMFILES,dist/fujinet-network-$(TARGETLIST)-*.lib) - cp build/$(PROGRAM) dist/fujinet-network-$(TARGETLIST)_$(VERSION_STRING).lib + $(call RMFILES,dist/fujinet-$(TARGETLIST)-*.lib) + cp build/$(PROGRAM) dist/fujinet-$(TARGETLIST)-$(VERSION_STRING).lib cp $(FN_NW_HEADER) dist/ cp $(FN_NW_INC) dist/ cp $(FN_IO_HEADER) dist/ cp $(FN_IO_INC) dist/ cp $(CHANGELOG) dist/ - cd dist && zip fujinet-network-$(TARGETLIST)_$(VERSION_STRING).zip $(CHANGELOG) fujinet-network-$(TARGETLIST)_$(VERSION_STRING).lib *.h *.inc - $(call RMFILES,dist/fujinet-network-$(TARGETLIST)_*.lib) + cd dist && zip fujinet-lib-$(TARGETLIST)-$(VERSION_STRING).zip $(CHANGELOG) fujinet-$(TARGETLIST)-$(VERSION_STRING).lib *.h *.inc + $(call RMFILES,dist/fujinet-$(TARGETLIST)-*.lib) $(call RMFILES,dist/$(CHANGELOG)) $(call RMFILES,dist/*.h) $(call RMFILES,dist/*.inc) diff --git a/fujinet-io.h b/fujinet-io.h index 4e26579..98f7f7a 100644 --- a/fujinet-io.h +++ b/fujinet-io.h @@ -1,6 +1,8 @@ #ifndef FN_IO_H #define FN_IO_H +// TODO: this header file needs documenting + #include #include diff --git a/version.txt b/version.txt index e3a4f19..fae692e 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.0 \ No newline at end of file +2.2.1 \ No newline at end of file