diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-19 17:17:10 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-19 17:17:10 -0300 |
commit | 0cb3c635c9cbe85ca473cf4bff7b9c6857dab424 (patch) | |
tree | ad627ae069f7b9d9481561ee418671ebc979e5d9 | |
parent | 827e7ab074c3a34e7392090bee9e367a0e61405f (diff) | |
download | bookup-0cb3c635c9cbe85ca473cf4bff7b9c6857dab424.tar.gz bookup-0cb3c635c9cbe85ca473cf4bff7b9c6857dab424.tar.bz2 |
Fix: apply fixes to the archive/permalink logic0.1.6
-rw-r--r-- | ChangeLog.md | 4 | ||||
-rw-r--r-- | Makefile.bookup | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog.md b/ChangeLog.md index 829a3e5..c6840d5 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,9 @@ # ChangeLog +## v0.1.6 - 2024-06-19 + +* [x] Apply fixes to the archive/permalink logic. + ## v0.1.5 - 2024-06-19 * [x] Archive after doing a build, making sure that the current tag is already diff --git a/Makefile.bookup b/Makefile.bookup index 87bdfb9..079b93d 100644 --- a/Makefile.bookup +++ b/Makefile.bookup @@ -39,7 +39,7 @@ HTML_STYLE ?= bookdown::gitbook EXCLUDES = archive slides # -# Metadata +# Runtime parameters # REVISION = $(shell git describe --tags 2> /dev/null || git log -1 --format=oneline | cut -d ' ' -f 1) @@ -56,7 +56,7 @@ YEAR = $(shell date +%Y) # Default target # -all: submodules book notes site assemble clean +all: submodules book notes site assemble clean archive @true # @@ -197,7 +197,7 @@ move_book: assemble: @$(BOOKUP)/bin/assemble -book: compile_book bookdown move_book clean archive +book: compile_book bookdown move_book clean # # Notes |