Skip to content

Commit

Permalink
Bump version 1.0.0b0 -> 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hogru committed Jan 8, 2024
1 parent 6cc604e commit 5b67eea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ outperforms the GuacaMol model in terms of this metric, and is also successful i
## Installation

A local (editable package) installation requires `python`
3.9, [`poetry`](https://python-poetry.org) ≥ 1.0.8 and `pip` ≥ 22.3. Experiment results are logged
3.9, [`poetry`](https://python-poetry.org) ≥ 1.0.0 and `pip` ≥ 22.3. Experiment results are logged
to [`weights and biases`](https://wandb.ai).

```
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "MolReactGen"
version = "1.0.0b0"
version = "1.0.0"
description = "Auto-regressive transformer decoder based on the Hugging Face implementation of Open AI's GPT-2 to generate molecules (SMILES) and reaction templates (SMARTS)"
authors = ["Stephan Holzgruber <[email protected]>"]
readme = "README.md"
Expand Down Expand Up @@ -95,7 +95,7 @@ line_length = 88
filter_files = true

[tool.bumpver]
current_version = "1.0.0b0"
current_version = "1.0.0"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion src/molreactgen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# src/molreactgen/__init__.py
"""Standard __init__.py for molreactgen package."""

__version__ = "1.0.0b0"
__version__ = "1.0.0"

0 comments on commit 5b67eea

Please sign in to comment.