Skip to content

Commit 064b2eb

Browse files
authored
Release v0.0.2. (#2)
1 parent 76a7cfc commit 064b2eb

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ all releases are available on `Anaconda.org
1212

1313
- :gh:`1` allowed LaTeX tasks to have more than one dependency and allows to parametrize
1414
over latex options and latex documents. It also prepares release v0.0.2.
15+
- :gh:`2` fixes the release.
1516

1617

1718
0.0.1 - 2020-07-20

environment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ dependencies:
1515
- pytask >= 0.0.4
1616

1717
# Misc
18+
- bumpversion
1819
- jupyterlab
1920
- matplotlib
2021
- pdbpp

setup.cfg

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
[bumpversion]
2-
current_version = 0.0.1
2+
current_version = 0.0.2
33
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))(\-?((dev)?(?P<dev>\d+))?)
4-
serialize =
5-
{major}.{minor}.{patch}dev{dev}
6-
{major}.{minor}.{patch}
4+
serialize =
5+
{major}.{minor}.{patch}dev{dev}
6+
{major}.{minor}.{patch}
77

88
[bumpversion:file:setup.py]
99

10-
[bumpversion:file:docs/conf.py]
11-
1210
[bumpversion:file:src/pytask_latex/__init__.py]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name="pytask-latex",
6-
version="0.0.1",
6+
version="0.0.2",
77
packages=find_packages(where="src"),
88
package_dir={"": "src"},
99
entry_points={"pytask": ["pytask_latex = pytask_latex.plugin"]},

src/pytask_latex/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "0.0.2"

0 commit comments

Comments
 (0)