Skip to content

Commit

Permalink
v2.2.4 (#116)
Browse files Browse the repository at this point in the history
* Fix version.sh

* Bump version to 2.2.4

* Update `NEWS.md`
  • Loading branch information
bpepple authored Apr 6, 2024
1 parent 578f293 commit 364c505
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 11 deletions.
15 changes: 12 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
# 📰 Metron-Tagger News

## v2.2.x

### Changes
## v2.2.4

### 🐛 Bug Fixes

- Fix Tagging Bug with Existing `ComicInfo.xml` @bpepple (#114)
- Fix bug in duplicate image detection when attempting to hash a bad image.
(#105)

### 🧰 Maintenance

- Update Pillow and Other Deps @bpepple (#115)
- Bump actions/cache from 2 to 4 @dependabot (#111)
- Bump actions/checkout from 2 to 4 @dependabot (#107)
- Bump release-drafter/release-drafter from 5 to 6 @dependabot (#110)
- Bump github/codeql-action from 1 to 3 @dependabot (#109)
- Bump JRubics/poetry-publish from 1.17 to 2.0 @dependabot (#108)
- Bump actions/setup-python from 2 to 5 @dependabot (#106)

## v2.2.3

### Changes
Expand Down
3 changes: 1 addition & 2 deletions bin/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ if [ "$VERSION" = "" ]; then
poetry version | awk '{print $2};'
else
poetry version "$VERSION"
cd frontend
npm version --allow-same-version "$VERSION"
npm version --allow-same-version --no-git-tag-version "$VERSION"
fi
2 changes: 1 addition & 1 deletion metrontagger/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Projects version information used in setup.py."""

__version__ = "2.2.3"
__version__ = "2.2.4"
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.2.0",
"version": "2.2.4",
"description": "metron-tagger linting",
"type": "module",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "metron-tagger"
version = "2.2.3"
version = "2.2.4"
description = "A program to write metadata from metron.cloud to a comic archive"
authors = ["Brian Pepple <[email protected]>"]
license = "GPL-3.0-or-later"
Expand All @@ -14,7 +14,7 @@ packages = [{ include = "metrontagger" }]
exclude = ["*/**/*~"]
include = [
{ path = "tests", format = "sdist" },
{ path = "CHANGELOG.md", format = "sdist" },
{ path = "NEWS.md", format = "sdist" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 364c505

Please sign in to comment.