Skip to content

Commit 66050de

Browse files
committed
v2.2.1 Name change of libs and archives to reflect fujinet-network to fujinet-lib name change
1 parent c4bf630 commit 66050de

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

Changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## [Unreleased]
44

5+
## [2.2.1] - 2024-02-21
6+
7+
- Renamed libs and archives to reflect name change from "fujinet-network" to "fujinet-lib"
8+
- Libs are now "fujinet-{target}-{version}.lib
9+
- Zips is now fujinet-lib-{target}-{version}.zip
10+
- Header and include files are still fujinet-io.{h,inc} and fujinet-network.{h,inc} to represent their sub-function within fujinet-lib
11+
512
## [2.2.0] - 2024-02-20
613

714
- 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).

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
TARGETS := atari apple2 commodore
1212

1313
# Name of the final, single-file library.
14-
PROGRAM := fujinet-network.lib
14+
PROGRAM := fujinet.lib
1515

1616
# Path(s) to additional libraries required for linking the program
1717
# Use only if you don't want to place copies of the libraries in SRCDIR
@@ -311,15 +311,15 @@ clean:
311311

312312
dist: $(PROGRAM)
313313
$(call MKDIR,dist/)
314-
$(call RMFILES,dist/fujinet-network-$(TARGETLIST)-*.lib)
315-
cp build/$(PROGRAM) dist/fujinet-network-$(TARGETLIST)_$(VERSION_STRING).lib
314+
$(call RMFILES,dist/fujinet-$(TARGETLIST)-*.lib)
315+
cp build/$(PROGRAM) dist/fujinet-$(TARGETLIST)-$(VERSION_STRING).lib
316316
cp $(FN_NW_HEADER) dist/
317317
cp $(FN_NW_INC) dist/
318318
cp $(FN_IO_HEADER) dist/
319319
cp $(FN_IO_INC) dist/
320320
cp $(CHANGELOG) dist/
321-
cd dist && zip fujinet-network-$(TARGETLIST)_$(VERSION_STRING).zip $(CHANGELOG) fujinet-network-$(TARGETLIST)_$(VERSION_STRING).lib *.h *.inc
322-
$(call RMFILES,dist/fujinet-network-$(TARGETLIST)_*.lib)
321+
cd dist && zip fujinet-lib-$(TARGETLIST)-$(VERSION_STRING).zip $(CHANGELOG) fujinet-$(TARGETLIST)-$(VERSION_STRING).lib *.h *.inc
322+
$(call RMFILES,dist/fujinet-$(TARGETLIST)-*.lib)
323323
$(call RMFILES,dist/$(CHANGELOG))
324324
$(call RMFILES,dist/*.h)
325325
$(call RMFILES,dist/*.inc)

fujinet-io.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#ifndef FN_IO_H
22
#define FN_IO_H
33

4+
// TODO: this header file needs documenting
5+
46
#include <stdint.h>
57
#include <stdbool.h>
68

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.0
1+
2.2.1

0 commit comments

Comments
 (0)