From c2c5221a8d0afc79a19b6137069902920d6a739e Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Tue, 8 Mar 2022 15:31:46 +0000 Subject: [PATCH] Makefile: bump version to 1.0 --- Makefile | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4ea5e86..f583d8b 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ # Makefile MyBuildNumber = $(shell date +%y%j) -MyVersion = 0.2.$(MyBuildNumber) -MyProductVersion = "2022 Beta2" +MyVersion = 1.0.$(MyBuildNumber) +MyProductVersion = "2022 Beta1" MyProductStage = "Beta" MyProductName = "HUBFS" diff --git a/README.md b/README.md index 2a35d9a..1e6aec9 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ By default HUBFS presents the following file system hierarchy: / *owner* / *repo HUBFS interprets submodules as symlinks. These submodules can be followed if they point to other GitHub repositories. General repository symlinks should work as well. (On Windows you must use the FUSE option `rellinks` for this to work correctly.) -With release 2022 Beta2 HUBFS *ref* directories are now writable. This is implemented as a union file system that overlays a read-write local file system over the read-only Git content. This scheme allows files to be edited and builds to be performed. A special file named `.keep` is created at the *ref* root (full path: / *owner* / *repository* / *ref* / `.keep`). When the edit/build modifications are no longer required the `.keep` file may be deleted and the *ref* root will be garbage collected when not in use (i.e. when no files are open in it -- having a terminal window open with a current directory inside a *ref* root counts as an open file and the *ref* will not be garbage collected). +With release 2022 Beta1 HUBFS *ref* directories are now writable. This is implemented as a union file system that overlays a read-write local file system over the read-only Git content. This scheme allows files to be edited and builds to be performed. A special file named `.keep` is created at the *ref* root (full path: / *owner* / *repository* / *ref* / `.keep`). When the edit/build modifications are no longer required the `.keep` file may be deleted and the *ref* root will be garbage collected when not in use (i.e. when no files are open in it -- having a terminal window open with a current directory inside a *ref* root counts as an open file and the *ref* will not be garbage collected). ### Windows integration