Skip to content
This repository was archived by the owner on Mar 5, 2020. It is now read-only.

Commit 5ec2bb3

Browse files
committed
Releasing version 1.0.0
1 parent 3647898 commit 5ec2bb3

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

Makefile

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.PHONY: release
2+
3+
all:
4+
5+
release:
6+
ifndef version
7+
$(error Please supply a version)
8+
endif
9+
@echo Releasing version $(version)
10+
ifeq (,$(findstring $(version),$(shell git log --oneline -1)))
11+
$(error Last commit does not match version)
12+
endif
13+
git tag $(version)
14+
git push
15+
git push --tags
16+
python setup.py sdist bdist_wheel upload

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
from setuptools import setup
33

4-
__version__ = '0.3.1'
4+
__version__ = '1.0.0'
55

66
# We use the README as the long_description
77
readme_path = os.path.join(os.path.dirname(__file__), "README.rst")

0 commit comments

Comments
 (0)