Browse Source

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>
tags/v0.10.12
Deuchnord 11 months ago
committed by GitHub
parent
commit
0cf9447d78
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 35 additions and 8 deletions
  1. +5
    -0
      .gitignore
  2. +9
    -0
      CHANGELOG.md
  3. +19
    -6
      Makefile
  4. +1
    -1
      kosmorro/locales/messages.pot
  5. +1
    -1
      pyproject.toml

+ 5
- 0
.gitignore View File

@@ -23,3 +23,8 @@ coverage.xml
/appimage-builder-cache
*.AppImage
*.AppImage.zsync

# Changelog-specific
/node_modules
package.json
package-lock.json

+ 9
- 0
CHANGELOG.md View File

@@ -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)




+ 19
- 6
Makefile View File

@@ -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}

+ 1
- 1
kosmorro/locales/messages.pot View File

@@ -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 <LL@li.org>\n"


+ 1
- 1
pyproject.toml View File

@@ -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 <jerome@deuchnord.fr>"]
license = "AGPL-3.0-or-later"


Loading…
Cancel
Save