Skip to content

Commit

Permalink
πŸš€ RELEASE: 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
delameter committed Jun 6, 2024
1 parent 1783aa4 commit 0c0fbd7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .env.dist
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=0.12.2
VERSION=0.13.0
PYPI_USERNAME=__token__
PYPI_PASSWORD= #api token for primary repo
PYPI_PASSWORD_DEV= #api token for dev repo
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ This project uses Semantic Versioning -- https://semver.org
-----------
*<current>*
-----------
- ...

0.13.0
------

- 🌱 NEW: `--version` now considers if stdout is a tty
- 🐞 FIX: panik on invalid schema url
- πŸ’Ž REFACTOR: HTTP method defaults to `GET`
Expand Down
10 changes: 3 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,9 @@ build: ## Create new *public* build
build: demolish-build
${VENV_PATH}/bin/python -m build

publish: ## Upload last *public* build (=> PRIMARY registry)
${VENV_PATH}/bin/twine \
upload \
-u ${PYPI_USERNAME} \
-p ${PYPI_PASSWORD} \
--verbose \
${OUT_BUILD_RELEASE_PATH}/*
publish: ## Upload last build (=> PRIMARY registry) <hatch>
@[ -n "${SKIP_MODULE_UPLOAD}" ] && return 0
hatch -e build publish -u "${PYPI_USERNAME}" -a "${PYPI_PASSWORD}"

install: ## > Install latest *public* build from PRIMARY registry
pipx install ${PROJECT_NAME_PUBLIC}
Expand Down
4 changes: 2 additions & 2 deletions macedon/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# (c) 2022-2023 A. Shavykin <[email protected]>
# -----------------------------------------------------------------------------

__version__ = "0.12.2"
__updated__ = "2023-11-30 03:05:28+03:00"
__version__ = "0.13.0"
__updated__ = "2024-06-06 19:48:31+03:00"

0 comments on commit 0c0fbd7

Please sign in to comment.