Skip to content

Commit

Permalink
0.17.0 -> 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanarijit committed Feb 9, 2024
1 parent 908cc18 commit 1fbd21a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
History
=======

0.18.0 (2024-02-09)
-------------------
- urllib.quote_plus the url attributes
- Match link domain more precisely.
- Image height or width can be individually specified

0.16.0 (2023-03-14)
-------------------
* Support for new tiptap versions that uses camelCase over snake_case
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.17.0
current_version = 0.18.0
commit = True
tag = True

Expand Down
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@

from setuptools import setup, find_packages

from setuptools import find_packages, setup

setup(
name="tiptapy",
version='0.17.0', # TODO: why bumpversion works only for single quotes?
version="0.18.0", # TODO: why bumpversion works only for single quotes?
url="https://github.com/scrolltech/tiptapy",
description="Library that generates HTML output from JSON export of tiptap editor",
long_description=open("README.md").read(),
Expand All @@ -13,7 +11,13 @@
author="Shekhar Tiwatne",
author_email="[email protected]",
license="http://www.opensource.org/licenses/mit-license.php",
package_data={"tiptapy": ["templates/*.html", "templates/extras/*.html", "templates/marks/*.html"]},
package_data={
"tiptapy": [
"templates/*.html",
"templates/extras/*.html",
"templates/marks/*.html",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 1fbd21a

Please sign in to comment.