Skip to content

Commit

Permalink
v0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marcom committed Apr 16, 2024
1 parent f88cfbc commit 58eff2d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# CHANGELOG

## 0.12 (under development)
## Unreleased changes

## 0.11.2

- support for modified base energy parameter presets is available with
the `sc_mod_*!` functions, e.g. `sc_mod_pseudouridine!`

- added more ViennaRNA header files to the autogenerated Julia interface:
- `constraints/*.h` (for soft/hard constraints and modified bases)
Expand All @@ -10,11 +15,11 @@
parsing with Clang.jl to fix some parsing bugs (see
`gen/patches-for-headers/`).

## 0.11
## 0.11.0

- update to ViennaRNA-2.6.x (from 2.5.x)

## 0.10
## 0.10.x

- Energy parameter sets are now changed by calling functions like
`ViennaRNA.params_load_RNA_Turner1999()` or
Expand All @@ -28,7 +33,7 @@
set.


## 0.9
## 0.9.x

- `FoldCompound`: new properties `max_bp_span` and `window_size` that
can be set in constructor
Expand Down
5 changes: 3 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ViennaRNA"
uuid = "05a721ad-238d-4945-8c85-8b5c1fff3465"
authors = ["Marco Matthies <marco.matthies@gmail.com>"]
version = "0.11.2-DEV"
version = "0.11.2"

[deps]
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
Expand All @@ -10,8 +10,9 @@ UnsafePointers = "e17b2a0c-0bdf-430a-bd0c-3a23cae4ff39"
ViennaRNA_jll = "b7a990de-7fa3-5a2e-8a39-d875e4dafecd"

[compat]
Aqua = "0.6"
Aqua = "0.8"
CEnum = "0.5"
Test = "1"
Unitful = "1.9"
UnsafePointers = "1"
ViennaRNA_jll = "~2.6.4"
Expand Down

2 comments on commit 58eff2d

@marcom
Copy link
Owner Author

@marcom marcom commented on 58eff2d Apr 16, 2024

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/105021

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.11.2 -m "<description of version>" 58eff2d5dfaf84f251ffe02378a61c6c9a0671c7
git push origin v0.11.2

Please sign in to comment.