diff options
| -rw-r--r-- | ChangeLog.md | 4 | ||||
| -rw-r--r-- | TODO.md | 1 | ||||
| -rw-r--r-- | _changelog.yml (renamed from _changes.yml) | 7 | ||||
| -rwxr-xr-x | bin/compile-changelog | 4 | ||||
| -rw-r--r-- | content/notes/00-changelog/changelog.md | 4 | ||||
| -rw-r--r-- | content/sections/10-structure/structure.md | 2 | ||||
| -rw-r--r-- | templates/_changelog.yml (renamed from templates/_changes.yml) | 0 |
7 files changed, 19 insertions, 3 deletions
diff --git a/ChangeLog.md b/ChangeLog.md index 8558e6b..c80657e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,9 @@ # ChangeLog +## v0.5.3 - 2025-11-22 + +* [x] Rename `_changes.yml` as `_changelog.yml`. + ## v0.5.2 - 2025-11-22 * [x] Link the change log in the HTML frontmatter. @@ -16,6 +16,7 @@ ## Refactor +* [ ] Consider merging `ChangeLog.md` with `_changelog.yml`. * [ ] Create a `bookup` script: * [ ] Able to read all the YAML config files, which should be the central places to hold all the configuration. diff --git a/_changes.yml b/_changelog.yml index 4352124..e456831 100644 --- a/_changes.yml +++ b/_changelog.yml @@ -4,6 +4,13 @@ changelog: Changelog version: Version help: This section can be used to register changes in the text versions. versions: + - id: 0.5.3 + date_atom: 2025-11-22T23:12:00-03:00 + date_rss: 22 Sep 2025 23:12:00 -0300 + date_markdown: 2025-11-22 + summary: | + * Rename _changes.yml as _changelog.yml. + - id: 0.5.2 date_atom: 2025-11-22T23:00:00-03:00 date_rss: 22 Sep 2025 23:00:00 -0300 diff --git a/bin/compile-changelog b/bin/compile-changelog index c72a0a4..771ddb1 100755 --- a/bin/compile-changelog +++ b/bin/compile-changelog @@ -8,7 +8,7 @@ BASENAME="`basename $0 | sed -e 's/\(.\)/\U\1/'`" DIRNAME="`dirname $0`" BASEDIR="$DIRNAME/.." -CHANGES="$BASEDIR/_changes.yml" +CHANGES="$BASEDIR/_changelog.yml" CHANGELOG="$BASEDIR/content/notes/00-changelog/changelog.md" BOOK="$BASEDIR/_book.yml" COMMON="$BASEDIR/_common.yml" @@ -16,7 +16,7 @@ META="$BASEDIR/.metadata/feed.yml" RSS_TMPL="$BASEDIR/templates/rss.xml" ATOM_TMPL="$BASEDIR/templates/atom.xml" CHANGELOG_TMPL="$BASEDIR/templates/changelog.md" -CHANGES_TMPL="$BASEDIR/templates/_changes.yml" +CHANGES_TMPL="$BASEDIR/templates/_changelog.yml" URL="$BASEDIR/snippets/url.txt" CONTACT="$BASEDIR/snippets/contact.txt" diff --git a/content/notes/00-changelog/changelog.md b/content/notes/00-changelog/changelog.md index 52e3971..174bb92 100644 --- a/content/notes/00-changelog/changelog.md +++ b/content/notes/00-changelog/changelog.md @@ -5,6 +5,10 @@ This section can be used to register changes in the text versions. +## Version 0.5.3 - 2025-11-22 {.unnumbered} + +* Rename _changes.yml as _changelog.yml. + ## Version 0.5.2 - 2025-11-22 {.unnumbered} * Link the change log in the HTML frontmatter. diff --git a/content/sections/10-structure/structure.md b/content/sections/10-structure/structure.md index fcc3150..b3432ff 100644 --- a/content/sections/10-structure/structure.md +++ b/content/sections/10-structure/structure.md @@ -21,5 +21,5 @@ A Bookup project folder structure looks like this: * `vendor/bookup`: where the Bookup codebase actually resides: * `content`: Bookup documentation. * `vendor/{Fuse.js,}`: dependencies. -* `_changes.yml`: to track changes in your book, used to build RSS and Atom +* `_changelog.yml`: to track changes in your book, used to build RSS and Atom feeds, as well as a ChangeLog in Markdown format. diff --git a/templates/_changes.yml b/templates/_changelog.yml index 31653bb..31653bb 100644 --- a/templates/_changes.yml +++ b/templates/_changelog.yml |
