Skip to content

Commit 61ddd79

Browse files
committed
[Merge]
3 parents cc6fcbe + 0a4485d + 48b87b6 commit 61ddd79

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,13 @@ release: setup
173173
$(UV) run python setup.py clean sdist bdist_wheel
174174
$(TWINE) upload dist/$(subst -,_,$(PYPI_PROJECT))-$(VERSION)*
175175

176+
.PHONY: release
177+
release:
178+
@git commit -a -m "[Release] $(PROJECT): $(VERSION)"
179+
git tag $(VERSION)
180+
git push --all
181+
$(PYTHON) setup.py clean sdist register upload
182+
176183
.PHONY: install
177184
install:
178185
@for file in $(SOURCES_BIN); do

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
import sys
44

5-
VERSION = "1.0.2"
5+
VERSION = "1.0.3"
66
# Try to import mypyc, make it optional
77
try:
88
from mypyc.build import mypycify

0 commit comments

Comments
 (0)