Skip to content
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

Pre-Release: ver. 0.4.27 #282

Merged
merged 3 commits into from
Jul 7, 2021
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
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Changelog:

### July 1, 2021
### July 7, 2021
#### New Features:
* **ver. ≥ `0.4.26`:**
* **ver. ≥ `0.4.27`:**
* ##### [Experiments](documentation#experiments)
* ##### [System Model Configurations]
* Configurations (`cadCAD.utils.Configuration`'s) as are no longer a part of the `cadCAD` module
Expand All @@ -17,7 +17,7 @@
* Users can no longer use the `config_list` method of `cadCAD.configuration.Experiment`
* **Backwards Compatibility:** The `append_model` method of `cadCAD.configuration.Experiment` can also be used as
the `append_configs` method.
* ##### [Upgrade Guide:](documentation#cadCAD-v0.4.26-Model-Upgrade-Guide.md) specific to feature changes / additions
* ##### [Upgrade Guide:](documentation#cadCAD-v0.4.27-Model-Upgrade-Guide.md) specific to feature changes / additions
* **Fixes:**
* [#248](https://github.com/cadCAD-org/cadCAD/issues/248)
* The previous release was returning partial results. An A/B test for this has been included and will be for
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/ ___/ __` / __ / / / /| | / / / /
/ /__/ /_/ / /_/ / /___/ ___ |/ /_/ /
\___/\__,_/\__,_/\____/_/ |_/_____/
by cadCAD ver. 0.4.26
by cadCAD ver. 0.4.27
======================================
Complex Adaptive Dynamics
o i e
Expand All @@ -20,7 +20,7 @@ through simulation, with support for Monte Carlo methods, A/B testing and parame

# Getting Started

#### Change Log: [ver. 0.4.26](CHANGELOG.md)
#### Change Log: [ver. 0.4.27](CHANGELOG.md)

[Previous Stable Release (No Longer Supported)](https://github.com/cadCAD-org/cadCAD/tree/b9cc6b2e4af15d6361d60d6ec059246ab8fbf6da)

Expand Down
2 changes: 1 addition & 1 deletion cadCAD/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os, dill

name = "cadCAD"
version = "0.4.26"
version = "0.4.27"

if os.name == 'nt':
dill.settings['recurse'] = True
Expand Down
Binary file removed dist/cadCAD-0.4.26.tar.gz
Binary file not shown.
Binary file not shown.
Binary file added dist/cadCAD-0.4.27.tar.gz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Feature
</th>
<th>
ver. 0.4.26
ver. 0.4.27
</th>
<th>
ver. 0.4.23
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"""

name = "cadCAD"
version = "0.4.26"
version = "0.4.27"

setup(name=name,
version=version,
Expand Down