Skip to content

Commit e8a2820

Browse files
committed
version 20240515.1
1 parent 12af494 commit e8a2820

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

Makefile

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
.PHONY: test build deploy
1+
.PHONY: clean test build deploy
2+
3+
clean:
4+
rm -rf dist build
25

36
test:
4-
python -m unittest tests
5-
build:
6-
rm -rf dist/*
7+
python -m unittest tests/test*.py
8+
9+
build: clean
710
python -m build
11+
812
deploy: build
913
python -m twine upload dist/*

pluralize/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import threading
55
import ast
66

7-
__version__ = "20240413.1"
7+
__version__ = "20240515.1"
88

99
re_language = re.compile(r"^\w\w(-\w+)*.json$")
1010

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pluralize"
3-
version = "20240413.1"
3+
version = "20240515.1"
44
authors = [{ name="Massimo Di Pierro", email="[email protected]" },]
55
description = "i18n + pluralization library with multi-plural form support and thread safe for web apps"
66
readme = "README.md"

0 commit comments

Comments
 (0)