We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 518c95d commit f3566d7Copy full SHA for f3566d7
Makefile
@@ -3,6 +3,14 @@ setup-dev:
3
@pipenv install --dev
4
@pipenv install -e .
5
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
14
.PHONY: repl
15
repl:
16
@pipenv run basilisp repl
src/basilisp/__version__.py
@@ -1,3 +1,3 @@
1
-VERSION = (0, 1, "dev2")
+VERSION = (0, 1, "dev3")
2
__version__ = '.'.join(map(str, VERSION))
0 commit comments