-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from aced-differentiate/add_changelog
Add changelog to docs
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Changelog | ||
|
||
I'm generally trying to adhere to [semver](https://semver.org) here. This means that in v0.*, assume breaking changes are always possible, even without a major version bump...however, I will try to always note them here if they happen... | ||
|
||
Categories to include for each release, if relevant: breaking, added, fixed, removed/deprecated | ||
|
||
## v0.1.2 [2021-03-22] | ||
|
||
### Added: | ||
* CGCNN model builder defaults to half `atom_conv_fea_len` for `pooled_fea_len` parameter | ||
* docs: add documentation website! | ||
* docs: remove conda environment files from example 1 and just include instructions to set up an environment from scratch for downloading data | ||
|
||
### Fixed: | ||
* import loss functions via `Flux.Losses` to be compatible with upcoming Flux v0.12 | ||
* change syntax of `build_graphs_batch` in example 2 to match changes to ChemistryFeaturization | ||
* rename `master` branch to `main` | ||
|
||
## v0.1.1 [2021-03-11] | ||
### Fixed: | ||
* explicitly import `Flux.glorot_uniform`, which is no longer exported by Flux otherwise | ||
|
||
## v0.1.0 [2021-02-25] | ||
|
||
First released version! | ||
|
||
### Added: | ||
* create `AGNConv` and `AGNPool` layers | ||
* create basic CGCNN model builder |