diff --git a/Makefile b/Makefile index 254c39a..cb95fd8 100644 --- a/Makefile +++ b/Makefile @@ -60,11 +60,11 @@ k8s/undeploy: ## [Local development] undeploy from Kubernetes. helm uninstall ${NAME} -n ${K8S_NAMESPACE} release: - echo "Releasing version ${VERSION}"; \ + @echo "Releasing version ${VERSION}"; \ git add .; \ read -p "Commit content:" COMMIT; \ - echo "Committing '${VERSION}: ${COMMIT}'"; \ - git commit -m "${VERSION}: ${COMMIT}"; \ + echo "Committing '${VERSION}: $$COMMIT'"; \ + git commit -m "${VERSION}: $$COMMIT"; \ git push origin main; \ git tag v${VERSION}; \ git push origin v${VERSION} diff --git a/setup.py b/setup.py index e5dbdbe..4633125 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ name="socialis", packages=find_packages(), include_package_data=True, - version="1.1.2", + version="1.1.3", entry_points={"console_scripts": ["ava = ava:main"]}, author="Louis Beaumont", author_email="louis@langa.me",