Skip to content

Commit f3566d7

Browse files
authored
Release v0.1.dev3 (#237)
1 parent 518c95d commit f3566d7

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ setup-dev:
33
@pipenv install --dev
44
@pipenv install -e .
55

6+
7+
.PHONY: release
8+
release:
9+
@rm -rf ./dist
10+
@pipenv run python setup.py sdist bdist_wheel --universal
11+
@pipenv run twine upload dist/*
12+
13+
614
.PHONY: repl
715
repl:
816
@pipenv run basilisp repl

src/basilisp/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = (0, 1, "dev2")
1+
VERSION = (0, 1, "dev3")
22

33
__version__ = '.'.join(map(str, VERSION))

0 commit comments

Comments
 (0)