Skip to content

Commit

Permalink
v0.15.2 release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudocubic committed Apr 4, 2024
1 parent 80d6178 commit 4669c16
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## staged

- none

## v0.15.2

- Added transformation `reduce_line_series!` which will reduce lines that consist of only buses with no additional connections to a single line.
- Added function `solve_mn_mc_opf_oltc` for multi-networks
- Fixed bug in `DssLine` parser where `c1` was being set to `c0`
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "PowerModelsDistribution"
uuid = "d7431456-977f-11e9-2de3-97ff7677985e"
authors = ["David M Fobes <[email protected]>", "Carleton Coffrin"]
repo = "https://github.com/lanl-ansi/PowerModelsDistribution.jl.git"
version = "0.15.1"
version = "0.15.2"

[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Expand Down
3 changes: 1 addition & 2 deletions docs/src/reference/data_models.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# [Data Models](@id DataModelAPI)

## Parsers
Expand Down Expand Up @@ -33,7 +32,7 @@ transform_solution
Modules = [PowerModelsDistribution]
Private = false
Order = [:function]
Pages = ["transformations.jl"]
Pages = ["transformations.jl", "reduce.jl", "kron.jl", "bounds.jl"]
```

## Multinetworks
Expand Down

2 comments on commit 4669c16

@pseudocubic
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/104278

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.15.2 -m "<description of version>" 4669c16e2e409520248eab2b2a83f2129ddf734b
git push origin v0.15.2

Please sign in to comment.