Skip to content

Commit 8dfd7bf

Browse files
bumped to v0.2.5
1 parent a6e0327 commit 8dfd7bf

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
author = 'Christopher Besch'
2626

2727
# The full version, including alpha/beta/rc tags
28-
release = "v0.2.4"
28+
release = "v0.2.5"
2929

3030

3131
# -- General configuration ---------------------------------------------------

docs/source/internals.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Files to be Updated when Bumping Version
1818

1919
* ``pyproject.toml``
2020
* ``package.json``
21+
* ``manim_editor/config.py``
2122
* ``docs/source/conf.py``
2223

2324

manim_editor/config.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ class Config:
1414
# protect user from scanning entire system when run in root
1515
RECURSION_DEPTH = 10
1616

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

2119
with open(os.path.join(BASE_DIR, "section_index.schema.json"), "r") as file:
2220
SECTION_INDEX_SCHEMA = json.load(file)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "manim_editor",
3-
"version": "0.2.4",
3+
"version": "0.2.5",
44
"description": "Editor and Presenter for Manim Generated Content.",
55
"scripts": {
66
"build_release": "webpack --env=production",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "manim_editor"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
description = "Editor and Presenter for Manim Generated Content"
55
authors = ["christopher-besch <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)