Skip to content

Commit

Permalink
v2.2.1 Name change of libs and archives to reflect fujinet-network to…
Browse files Browse the repository at this point in the history
… fujinet-lib name change
  • Loading branch information
markjfisher committed Feb 21, 2024
1 parent c4bf630 commit 66050de
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 2 additions & 0 deletions fujinet-io.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#ifndef FN_IO_H
#define FN_IO_H

// TODO: this header file needs documenting

#include <stdint.h>
#include <stdbool.h>

Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.0
2.2.1

0 comments on commit 66050de

Please sign in to comment.