Skip to content

Commit

Permalink
up julia; up Turing.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
soldasim committed Sep 6, 2024
1 parent 373651b commit 0602505
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.10.4'
- '1.10.5'
#- '1.6.7'
os:
#- ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1.10.4'
version: '1.10.5'
- uses: julia-actions/cache@v2
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ AbstractGPs = "^0.5.21"
Distributions = "^0.25.109"
LatinHypercubeSampling = "^1.9"
Optimization = "^3.27"
Turing = "^0.33.1"
Turing = "^0.33.1, ^0.34"

4 comments on commit 0602505

@soldasim
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/114656

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.0 -m "<description of version>" 06025058198d5b4b065d7734f5652eeb1913cfa0
git push origin v0.2.0

@soldasim
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

Changes from 0.1.0 to 0.2.0:

  • major code & types refactoring
  • refactor combinatorial testing
  • posterior function obtained from model_posterior now supports matrix input for evaluation of multiple points
  • add model_posterior_slice public function
  • add SampleOptMAP model fitter
  • add SamplingAM and SampleOptAM acquisition maximizers
  • refactor OptimizationMAP to optimize hyperparameters for each output dimension separately if possible
  • up Julia
  • up Turing.jl

Breaking Changes:

  • Some types were refactored. This includes: BossProblem, all subtypes of ExperimentData, all subtypes of SurrogateModel.
  • The noise_std_priors hyperparameter is now defined as a part of the SurrogateModel. (Previously was a part of BossProblem.)

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/114656

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.0 -m "<description of version>" 06025058198d5b4b065d7734f5652eeb1913cfa0
git push origin v0.2.0

Please sign in to comment.