Skip to content

Release v0.0.2. #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ all releases are available on `Anaconda.org

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


0.0.1 - 2020-07-20
Expand Down
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ dependencies:
- pytask >= 0.0.4

# Misc
- bumpversion
- jupyterlab
- matplotlib
- pdbpp
Expand Down
10 changes: 4 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
[bumpversion]
current_version = 0.0.1
current_version = 0.0.2
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))(\-?((dev)?(?P<dev>\d+))?)
serialize =
{major}.{minor}.{patch}dev{dev}
{major}.{minor}.{patch}
serialize =
{major}.{minor}.{patch}dev{dev}
{major}.{minor}.{patch}

[bumpversion:file:setup.py]

[bumpversion:file:docs/conf.py]

[bumpversion:file:src/pytask_latex/__init__.py]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="pytask-latex",
version="0.0.1",
version="0.0.2",
packages=find_packages(where="src"),
package_dir={"": "src"},
entry_points={"pytask": ["pytask_latex = pytask_latex.plugin"]},
Expand Down
1 change: 1 addition & 0 deletions src/pytask_latex/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.0.2"