Skip to content

Commit

Permalink
use julia 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Tinggong committed Oct 1, 2024
1 parent de71bb4 commit c0f44b2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Microstructure"
uuid = "bb9cb41e-5262-42dc-ac73-4f266bc6ab72"
authors = ["Ting Gong"]
version = "0.1.5"
version = "0.1.6"

[deps]
Copulas = "ae264745-0b69-425e-9d9d-cf662c5eec93"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ To install Microstructure.jl, open Julia and enter the package mode by typing `]

```julia
julia> ]
(@v1.8) pkg> add Microstructure
(@v1.10) pkg> add Microstructure
```

If you want to keep up to date with the developing version I am working on, remove the current installation and add the repository directly:

```julia
(@v1.8) pkg> rm Microstructure
(@v1.8) pkg> add https://github.com/Tinggong/Microstructure.jl.git
(@v1.10) pkg> rm Microstructure
(@v1.10) pkg> add https://github.com/Tinggong/Microstructure.jl.git
```

### Relationship to Other Packages
Expand Down
4 changes: 2 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ To install Microstructure.jl, type ] in Julia to enter package mode and add the

```julia
julia> ]
(@v1.8) pkg> add Microstructure
(@v1.10) pkg> add Microstructure
```

Microstructure.jl is under active development and is frequently updated. To ensure you have the latest version, use the following command in the package mode:

```julia
(@v1.8) pkg> up Microstructure
(@v1.10) pkg> up Microstructure
```

### Relationship to Other Packages
Expand Down

2 comments on commit c0f44b2

@Tinggong
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:

  • Updated ExCaliber as a three-compartment model
  • Added diagnostic tools for MCMC sampler (v1)
  • Added more arguments for neural network estimators, e.g. training distributions and activation function.

@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/116391

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.1.6 -m "<description of version>" c0f44b27442d2d6a86669a895a275f0628ebe4ad
git push origin v0.1.6

Please sign in to comment.