commit b52d58d52f66f0a0ddbc695d24ce970fdf62aa7f from: Alexander Arkhipov date: Sun Dec 31 09:58:51 2023 UTC bump version to 0.2 commit - 903b82fc9e38e0a8fb3a0e3d006cade827b59137 commit + b52d58d52f66f0a0ddbc695d24ce970fdf62aa7f blob - /dev/null blob + ca99eb7f38ffb53f521cde34f9e2d1d2710b30a1 (mode 644) --- /dev/null +++ CHANGES @@ -0,0 +1,19 @@ +0.2 + +- Completely rewrote in perl +- Added support for creating directories of arbitrary depth within GPM_DIR +- Added support for GPM_GPG environment variable and -g flag +- The GPM_RECIPIENT environment variable and -r flag are now optional +- Added support for multiline secrets +- Added the -m flag for the add command +- The add command no longer forces the .gpg suffix +- Added support for the GPM_LSCMD environment variable +- The rm command now asks before each removal (for forced removal use + "cd $GPM_DIR && rm -f $file") +- No longer trying to be "clever" about newlines +- The pm2gpm script is now a bit more secure +- Some man page fixes + +0.1 + +First release. blob - 30b2e390c3c5dfe6c5855003b096600d43c06e91 blob + ade7bd124e1515e7886b6d37326201598c9fb1df --- Makefile +++ Makefile @@ -31,7 +31,8 @@ clean: dist: clean mkdir -p $(DIST) - cp -rf Makefile version.mk README COPYING pm2gpm $(MAN) $(BIN) $(DIST) + cp -rf CHANGES COPYING Makefile README pm2gpm version.mk $(BIN) $(MAN) \ + $(DIST) tar cf - $(DIST) | gzip >$(TARBALL) rm -rf $(DIST) blob - f623384ddf344ff6e3d37f96317242f142b00d31 blob + a1272ea4d49976174e4aec7a3072f6a526c1772f --- version.mk +++ version.mk @@ -1 +1 @@ -V = 0.1 +V = 0.2