Skip to content

Commit

Permalink
release 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCrews committed Aug 16, 2023
1 parent 971fbf6 commit 4ffebe0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Changelog
`Unreleased <https://github.com/staticjinja/staticjinja/compare/main>`_
-----------------------------------------------------------------------

`5.0.0 <https://github.com/staticjinja/staticjinja/compare/4.1.3...5.0.0>`_ (2023-08-16)
----------------------------------------------------------------------------------------

Changed
^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "staticjinja"
# This needs to match what is in the source code.
version = "4.1.3"
version = "5.0.0"
description = "jinja based static site generator"
authors = ["Ceasar Bautista <cbautista2010@gmail.com>"]
maintainers = ["Nick Crews <nicholas.b.crews@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion staticjinja/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"""

# This needs to match what is in pyproject.toml
__version_info__ = (4, 1, 3)
__version_info__ = (5, 0, 0)
__version__ = ".".join(map(str, __version_info__))

import logging
Expand Down

0 comments on commit 4ffebe0

Please sign in to comment.