Skip to content

Commit

Permalink
fix face dep and bump version for v23.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mahmoud committed Jan 19, 2023
1 parent d2df6af commit 53666f5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ The glom team's approach to updates can be summed up as:
Check this page when upgrading, we strive to keep the updates
summarized and well-linked.

23.1.1
------
*(January 19, 2023)*

Fix a dependency issue by pinning the `face` library.

23.1.0
------
*(January 18, 2023)*
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
# The short X.Y version
version = u'23.1'
# The full version, including alpha/beta/rc tags
release = u'23.1.0'
release = u'23.1.1'


todo_add_to_theme_to_keep_menus_expanded = """
Expand Down
2 changes: 1 addition & 1 deletion glom/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (23, 1, 1, "dev")
version_info = (23, 1, 1, "")
__version__ = '.'.join([str(part) for part in version_info if part or part == 0])
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
'Documentation': 'https://glom.readthedocs.io/en/latest/',
},
packages=['glom', 'glom.test'],
install_requires=['boltons>=19.3.0', 'attrs', 'face<22.0.0'],
install_requires=['boltons>=19.3.0', 'attrs', 'face==20.1.1'],
extras_require={
'yaml': ['PyYAML'],
},
Expand Down

0 comments on commit 53666f5

Please sign in to comment.