Skip to content

Commit

Permalink
verson 1.1.0 (and add changelog to readme)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgevans committed Aug 14, 2020
1 parent 22084b8 commit 6d0218d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ Most user-facing functions are on the TileSet class.
# Questions

Please send any questions to Constantine Evans, at [email protected] or [email protected].

# Versions

* v1.1.0: fixes broken workaround for ruamel.yaml bug now fixed upstream, adds double-tile sensitivity, includes seed file to make xor example work.
2 changes: 1 addition & 1 deletion alhambra/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.0.0'
__version__ = '1.1.0'
__all__ = ["TileSet", "Tile", "TileList", "End", "EndList", "TileStructure"]

from .tilesets import TileSet
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

setup(
name="alhambra",
version="1.0.0",
version="1.0.1",
packages=['alhambra'],
install_requires=[
'numpy', 'stickydesign >= 0.8.1', 'svgwrite', 'lxml', 'shutilwhich',
'peppercompiler >= 0.1.2', 'ruamel.yaml', 'cssutils'
'peppercompiler >= 0.1.2', 'ruamel.yaml >= 0.15.100', 'cssutils'
],
include_package_data=True,
entry_points={'console_scripts': ['alhambra = alhambra.scripts:alhambra']},
Expand Down

0 comments on commit 6d0218d

Please sign in to comment.