Skip to content

Commit 403c119

Browse files
committed
Bump to 0.2.0: the VAE fixes never actually shipped
The v0.1.1 tag was cut as a docs-only release two days before the VAE rework (genuine beta-TC-VAE objective, latent-space generation/ interpolation actually producing molecules) merged to main -- so every `pip install molgen` today gets the pre-fix code while the README documents the post-fix behavior. Verified: a fresh 0.1.1 install has no `vae-train`/`vae-sample`/`vae-interpolate` subcommands at all (CLI rejects them as invalid choices), and the underlying generation code still contains the bug the changelog already described as fixed. This bump plus a real GitHub release is what actually gets the fix to users; moved the changelog's `[Unreleased]` entries under a new `[0.2.0]` heading to match.
1 parent 49a03a9 commit 403c119

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ All notable changes to this project are documented here. The format is based on
66

77
## [Unreleased]
88

9+
## [0.2.0]
10+
911
### Changed
1012
- `BetaTCVAE` now optimizes a **genuine β-TC-VAE objective**: the KL term is
1113
decomposed into index-code mutual information, **total correlation**, and the

molgen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
try:
1111
__version__ = version("molgen")
1212
except PackageNotFoundError: # pragma: no cover - running from a source checkout
13-
__version__ = "0.1.1"
13+
__version__ = "0.2.0"
1414

1515
__all__ = ["__version__"]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "molgen"
7-
version = "0.1.1"
7+
version = "0.2.0"
88
description = "A lightweight toolkit for de novo molecular generation (SMILES/SELFIES; CharRNN, MolGPT, VAE)"
99
readme = "README.md"
1010
requires-python = ">=3.9"

0 commit comments

Comments
 (0)