Skip to content

Commit

Permalink
build: bump version 0.10.12 (#323)
Browse files Browse the repository at this point in the history
* chore: install conventional-changelog locally when releasing

* build: bumb v0.10.12

---------

Co-authored-by: Jérôme Deuchnord <[email protected]>
  • Loading branch information
Deuchnord and Jérôme Deuchnord authored May 24, 2023
1 parent 696d4af commit 0cf9447
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,8 @@ coverage.xml
/appimage-builder-cache
*.AppImage
*.AppImage.zsync

# Changelog-specific
/node_modules
package.json
package-lock.json
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# [Version 0.10.12](https://github.com/Kosmorro/kosmorro/compare/v0.10.11...v0.10.12) (2023-05-24)


### Bug Fixes

* support Python 3.11 ([#316](https://github.com/Kosmorro/kosmorro/issues/316)) ([209aab0](https://github.com/Kosmorro/kosmorro/commit/209aab06e48a75b3161f337b0d0f56b6a63ce97f))



# [Version 0.10.11](https://github.com/Kosmorro/kosmorro/compare/v0.10.10...v0.10.11) (2022-11-11)


Expand Down
25 changes: 19 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,25 @@ messages:
i18n:
poetry run pybabel compile --directory=kosmorro/locales

changelog:
conventional-changelog -p angular -i CHANGELOG.md -s
changelog: install-conventional-changelog generate-changelog delete-conventional-changelog


install-conventional-changelog:
npm install conventional-changelog-cli

generate-changelog:
node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s

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

clean:
rm -rf build dist appimage-builder-cache kosmorro.egg-info manpage/kosmorro.{1,7}{,.html}
delete-conventional-changelog:
rm -rf \
node_modules \
package{,-lock}.json

clean: delete-conventional-changelog
rm -rf \
build \
dist appimage-builder-cache \
kosmorro.egg-info \
manpage/kosmorro.{1,7}{,.html}
2 changes: 1 addition & 1 deletion kosmorro/locales/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2023-04-12 16:15+0200\n"
"POT-Creation-Date: 2023-05-24 13:41+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kosmorro"
version = "0.10.11"
version = "0.10.12"
description = "A program to compute the ephemerides."
authors = ["Jérôme Deuchnord <[email protected]>"]
license = "AGPL-3.0-or-later"
Expand Down

0 comments on commit 0cf9447

Please sign in to comment.