Skip to content

Commit

Permalink
Bump patch release (#3729)
Browse files Browse the repository at this point in the history
* Bump patch release

Captures the masking of immersed cells for visualization in #3725.

* enable doc previews

Now there is a [GitHub action](https://github.com/CliMA/OceananigansDocumentation/blob/master/.github/workflows/DocPreviewsCleanup.yml) that automatically clears up the previews directory once a week!

* update comment
  • Loading branch information
navidcy committed Aug 26, 2024
1 parent d73d78f commit 5218acd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Oceananigans"
uuid = "9e8cae18-63c1-5223-a75c-80ca9d6e9a09"
authors = ["Climate Modeling Alliance and contributors"]
version = "0.91.9"
version = "0.91.10"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down
6 changes: 3 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Distributed.addprocs(2)
const EXAMPLES_DIR = joinpath(@__DIR__, "..", "examples")
const OUTPUT_DIR = joinpath(@__DIR__, "src/literated")

# The examples that take longer to run should be first. This ensures thats
# docs built using extra workers is as efficient as possible.
# The examples that take longer to run should be first. This ensures that the
# docs built which extra workers is as efficient as possible.
example_scripts = [
"internal_tide.jl",
"shallow_water_Bickley_jet.jl",
Expand Down Expand Up @@ -219,6 +219,6 @@ if ci_build
deploydocs(repo = "github.com/CliMA/OceananigansDocumentation.git",
versions = ["stable" => "v^", "dev" => "dev", "v#.#.#"],
forcepush = true,
push_preview = false,
push_preview = true,
devbranch = "main")
end

2 comments on commit 5218acd

@navidcy
Copy link
Collaborator 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/113835

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.91.10 -m "<description of version>" 5218acd72d146f063838286e7bf61c2d26165fbf
git push origin v0.91.10

Please sign in to comment.