Skip to content

Commit

Permalink
bumped to v0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-besch committed Nov 4, 2021
1 parent a6e0327 commit 8dfd7bf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
author = 'Christopher Besch'

# The full version, including alpha/beta/rc tags
release = "v0.2.4"
release = "v0.2.5"


# -- General configuration ---------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions docs/source/internals.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Files to be Updated when Bumping Version

* ``pyproject.toml``
* ``package.json``
* ``manim_editor/config.py``
* ``docs/source/conf.py``


Expand Down
4 changes: 1 addition & 3 deletions manim_editor/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ class Config:
# protect user from scanning entire system when run in root
RECURSION_DEPTH = 10

# load version from package.json for npm package
with open(os.path.join(BASE_DIR, "..", "package.json"), "r") as file:
VERSION = json.load(file)["version"]
VERSION = "v0.2.5"

with open(os.path.join(BASE_DIR, "section_index.schema.json"), "r") as file:
SECTION_INDEX_SCHEMA = json.load(file)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "manim_editor",
"version": "0.2.4",
"version": "0.2.5",
"description": "Editor and Presenter for Manim Generated Content.",
"scripts": {
"build_release": "webpack --env=production",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "manim_editor"
version = "0.2.4"
version = "0.2.5"
description = "Editor and Presenter for Manim Generated Content"
authors = ["christopher-besch <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 8dfd7bf

Please sign in to comment.