Skip to content

Commit

Permalink
Set versioning for the new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodiologist committed May 20, 2024
1 parent 27729d3 commit 5878ba4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hyrule/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# We use an `__init__.py` instead of `__init__.hy` so that importing
# from Python works even if `hy` hasn't been imported yet.

__version__ = 'unreleased'
__version__ = '0.6.0'

import hy
hy.macros.require('hyrule.hy_init',
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ def run(self):
# both setup_requires and install_requires
# since we need to compile .hy files during setup
requires = [
'hy'
'hy >= 0.29.0, < 0.30'
]


setuptools.setup(
name = 'hyrule',
version = '0.0.0',
version = '0.6.0',
setup_requires=['wheel'] + requires,
install_requires=requires,
packages = setuptools.find_packages(exclude = ["tests*"]),
Expand Down

0 comments on commit 5878ba4

Please sign in to comment.