Skip to content

Commit 0cf9447

Browse files
DeuchnordJérôme Deuchnord
andauthored
build: bump version 0.10.12 (#323)
* chore: install conventional-changelog locally when releasing * build: bumb v0.10.12 --------- Co-authored-by: Jérôme Deuchnord <jerome@deuchnord.fr>
1 parent 696d4af commit 0cf9447

5 files changed

Lines changed: 35 additions & 8 deletions

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,8 @@ coverage.xml
2323
/appimage-builder-cache
2424
*.AppImage
2525
*.AppImage.zsync
26+
27+
# Changelog-specific
28+
/node_modules
29+
package.json
30+
package-lock.json

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# [Version 0.10.12](https://github.com/Kosmorro/kosmorro/compare/v0.10.11...v0.10.12) (2023-05-24)
2+
3+
4+
### Bug Fixes
5+
6+
* support Python 3.11 ([#316](https://github.com/Kosmorro/kosmorro/issues/316)) ([209aab0](https://github.com/Kosmorro/kosmorro/commit/209aab06e48a75b3161f337b0d0f56b6a63ce97f))
7+
8+
9+
110
# [Version 0.10.11](https://github.com/Kosmorro/kosmorro/compare/v0.10.10...v0.10.11) (2022-11-11)
211

312

Makefile

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,25 @@ messages:
2020
i18n:
2121
poetry run pybabel compile --directory=kosmorro/locales
2222

23-
changelog:
24-
conventional-changelog -p angular -i CHANGELOG.md -s
23+
changelog: install-conventional-changelog generate-changelog delete-conventional-changelog
24+
25+
26+
install-conventional-changelog:
27+
npm install conventional-changelog-cli
28+
29+
generate-changelog:
30+
node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s
2531

2632
prepare-release: messages changelog
27-
@echo
28-
@echo "Before tagging, don't forget to update version number in CHANGELOG"
2933

30-
clean:
31-
rm -rf build dist appimage-builder-cache kosmorro.egg-info manpage/kosmorro.{1,7}{,.html}
34+
delete-conventional-changelog:
35+
rm -rf \
36+
node_modules \
37+
package{,-lock}.json
38+
39+
clean: delete-conventional-changelog
40+
rm -rf \
41+
build \
42+
dist appimage-builder-cache \
43+
kosmorro.egg-info \
44+
manpage/kosmorro.{1,7}{,.html}

kosmorro/locales/messages.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PROJECT VERSION\n"
1010
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
11-
"POT-Creation-Date: 2023-04-12 16:15+0200\n"
11+
"POT-Creation-Date: 2023-05-24 13:41+0200\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "kosmorro"
3-
version = "0.10.11"
3+
version = "0.10.12"
44
description = "A program to compute the ephemerides."
55
authors = ["Jérôme Deuchnord <jerome@deuchnord.fr>"]
66
license = "AGPL-3.0-or-later"

0 commit comments

Comments
 (0)