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

Release v2.0.0 #24

Merged
merged 2 commits into from
Apr 24, 2024
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
9 changes: 8 additions & 1 deletion RELEASE_NOTES.MD
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
#### 2.0.0-alpha2 - unreleased
#### 2.0.0 - 2024-04-24
* FEATURE: Domain Specific Language (DSL) for scaffolding models.
* FEATURE: User-definable RNG seeds.
* FEATURE: Scaffold many models into competing hypotheses.
* FEATURE: One-step-ahead analysis of model performance.
* FEATURE: Benchmark suite of common test functions for optimisation routines
* FEATURE: Performance tuning of optimisers. For example, Filzbach 94% faster.
* FEATURE: Documentation website uses latest fsdocs and includes fully worked examples.
* BREAKING: We recommend using the DSL to construct models. Underlying F# record type signatures have changed and will break version 1.x scripts.
* BUGFIX: Amoeba functions respect end conditions.

#### 2.0.0-alpha2 - 2022-04-27
* FEATURE: Add univariate gaussian -log likelihood function
Expand Down
7 changes: 3 additions & 4 deletions docs/index.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,15 @@ Contributing and copyright

The project is hosted on [GitHub][gh] where you can [report issues][issues], fork
the project and submit pull requests. If you're adding a new public API, please also
consider adding [samples][content] that can be turned into a documentation. You might
also want to read the [library design notes][readme] to understand how it works.
consider adding [samples][content] that can be turned into documentation (using fsdocs
literal scripting).

The library is available under an MIT license, which allows modification and
redistribution for both commercial and non-commercial purposes. For more information see the
[License file][license] in the GitHub repository.

[content]: https://github.com/AndrewIOM/Bristlecone/tree/master/docs/content
[content]: https://github.com/AndrewIOM/Bristlecone/tree/master/docs/examples
[gh]: https://github.com/AndrewIOM/Bristlecone
[issues]: https://github.com/AndrewIOM/Bristlecone/issues
[readme]: https://github.com/AndrewIOM/Bristlecone/blob/master/README.md
[license]: https://github.com/AndrewIOM/Bristlecone/blob/master/LICENSE
*)
Loading