Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mlesnoff committed Apr 14, 2024
1 parent d0bb248 commit 95a04e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ Ad'hoc **pipelines** can also be built. In **Jchemo**, a pipeline is a **chain o

The pipelines are built with function `pip`.

**Warnings:**
- Major breaking changes were made between **version 0.2.4** and **version 0.3.0**. Mainly, a new **embedded syntax** was proposed.
**Warnings**
- A breaking change has been made between **version 0.3.7** and **version 0.4.0** for the embedded syntax, with the use of the new function **model**. For instance:
- **mod = plskern(; nlv = 15)** is now writen as **mod = model(plskern; nlv = 15)**. Other things have not changed.
- *mod = plskern(; nlv = 15)* is now writen as *mod = model(plskern; nlv = 15)*. Other things have not changed.
- Major breaking changes were made between **version 0.2.4** and **version 0.3.0**. Mainly, a new **embedded syntax** was proposed.

See [**What changed**](https://mlesnoff.github.io/Jchemo.jl/dev/news/) for details.

Expand Down

2 comments on commit 95a04e0

@mlesnoff
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/104894

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.4.0 -m "<description of version>" 95a04e02ba7d89eb06157894250b8b4cf66574ff
git push origin v0.4.0

Please sign in to comment.