Skip to content

Commit 35195f8

Browse files
chore(version): bump 4.8.2 to 4.8.3 (#119)
* chore(version): bump 4.8.2 to 4.8.3 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * chore(ci): always use apt-get update See comment actions/runner-images#6488 (comment) * chore(docs): add opengraph image and update description --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 2d7a67a commit 35195f8

File tree

8 files changed

+50
-15
lines changed

8 files changed

+50
-15
lines changed

.bumpversion.cfg

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[bumpversion]
2+
current_version = 4.8.3
3+
commit = True
4+
message = chore(version): bump {current_version} to {new_version}
5+
6+
[bumpversion:file:manim_slides/__version__.py]
7+
search = __version__ = "{current_version}"
8+
replace = __version__ = "{new_version}"
9+
10+
[bumpversion:file:pyproject.toml]
11+
search = version = "{current_version}"
12+
replace = version = "{new_version}"

.github/workflows/pages.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ jobs:
4242
- name: Setup Pages
4343
uses: actions/configure-pages@v2
4444
- name: Install Linux Dependencies
45-
run: sudo apt install libcairo2-dev libpango1.0-dev ffmpeg freeglut3-dev
45+
run: |
46+
sudo apt-get update
47+
sudo apt-get install libcairo2-dev libpango1.0-dev ffmpeg freeglut3-dev
4648
- name: Install Python dependencies
4749
run: pip install manim sphinx sphinx_click furo
4850
- name: Install local Python package

.github/workflows/test_examples.yml

+3
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ jobs:
7474
- name: Install manimgl dependencies on MacOS
7575
if: matrix.os == 'macos-latest' && matrix.manim == 'manimgl'
7676
run: brew install ffmpeg
77+
- name: Run apt-get update on Ubuntu
78+
if: matrix.os == 'ubuntu-latest'
79+
run: sudo apt-get update
7780
- name: Install manim dependencies on Ubuntu
7881
if: matrix.os == 'ubuntu-latest' && matrix.manim == 'manim'
7982
run: |

docs/source/conf.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,14 @@
5252
"source_directory": "docs/source/",
5353
}
5454

55-
## -- Intersphinx mapping
55+
# -- Intersphinx mapping
5656

5757
intersphinx_mapping = {
5858
"python": ("https://docs.python.org/3", None),
5959
"manim": ("https://docs.manim.community/en/stable/", None),
6060
"manimlib": ("https://3b1b.github.io/manim/", None),
6161
}
62+
63+
# -- OpenGraph settings
64+
65+
ogp_use_first_image = True

docs/source/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
hide-toc: true
3+
og:description: Manim Slides makes creating slides with Manim super easy!
34
---
45

56
```{eval-rst}

manim_slides/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.8.2"
1+
__version__ = "4.8.3"

poetry.lock

+23-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ packages = [
6161
]
6262
readme = "README.md"
6363
repository = "https://github.com/jeertmans/manim-slides"
64-
version = "4.8.2"
64+
version = "4.8.3"
6565

6666
[tool.poetry.dependencies]
6767
click = "^8.1.3"
@@ -76,6 +76,7 @@ tqdm = "^4.64.1"
7676

7777
[tool.poetry.group.dev.dependencies]
7878
black = "^22.10.0"
79+
bump2version = "^1.0.1"
7980
isort = "^5.12.0"
8081
mypy = "^0.991"
8182
pre-commit = "^3.0.2"

0 commit comments

Comments
 (0)