Skip to content

Commit

Permalink
bump version 0.4.0 -> 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jgallowa07 committed Jun 17, 2024
1 parent c6b6845 commit 0431f9e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.

The format is based on `Keep a Changelog <https://keepachangelog.com>`_.


0.5.0
-----
- This release re-implements the joint model as a using a generalized lasso, and bit-flipping, as described in `#156 https://github.com/matsengrp/multidms/issues/156`_. Please see the issue for more detailed description about how, and why these changes were made. Note that this changes the parameters that one may get from the model including a set of beta's for each experimental condition.
- It also cleans up various TODO's in the code as checked-off in `# https://github.com/matsengrp/multidms/issues/153`.
- Fixes a bug, where the phenotype predictions for single mutants did not correctly include the bundle effects.
- Fixes and cleans various plotting bugs.

0.4.0
-----
- new simulation validation analysis and plotting functions (at the time of re-submission)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ the package to the **real** PyPI repository.
.. _twine: https://github.com/pypa/twine
.. _`numpy style documentation`: https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_numpy.html
.. _nbval: https://nbval.readthedocs.io
.. _bumpver: https://github.com/mbarkhau/bumpver
.. _bumpver: https://github.com/mbarkhau/bumpver
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
project = "multidms"
copyright = "2023, Jared Galloway, Hugh Haddox"
author = "Jared Galloway"
release = "0.4.0"
release = "1.0.0"

needs_sphinx = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion multidms/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class works to compose, compile, and optimize the model parameters

__author__ = "Jared Galloway"
__email__ = "[email protected]"
__version__ = "0.4.0"
__version__ = "1.0.0"
__url__ = "https://github.com/matsengrp/multidms"

from binarymap.binarymap import AAS_NOSTOP as AAS # noqa: F401
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "multidms"
version = "0.4.0"
version = "1.0.0"
description = "Joint modeling of multiple deep mutational scanning experiments."
readme = "README.md"
authors = [
Expand Down Expand Up @@ -111,7 +111,7 @@ repository = "https://github.com/matsengrp/multidms"
packages = ["multidms"]

[tool.bumpver]
current_version = "0.4.0"
current_version = "1.0.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down

0 comments on commit 0431f9e

Please sign in to comment.