Skip to content

Commit

Permalink
Bump Version
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromxavier committed Dec 17, 2022
1 parent 220e77c commit b10838b
Show file tree
Hide file tree
Showing 2 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
Expand Up @@ -7,7 +7,7 @@ authors = [
"joaquimg <[email protected]>",
"bernalde <[email protected]>"
]
version = "0.5.3"
version = "0.5.4"

[deps]
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ where $J \in \mathbb{R}^{n \times n}$ is triangular and $\mathbf{h} \in \mathbb{

### Installation
```julia
julia> import Pkg; Pkg.add("QUBOTools")
julia> import Pkg

julia> using QUBOTools
julia> Pkg.add("QUBOTools")
```

### Basic Usage
```julia
julia> model = read("problem.json", BQPJSON)
julia> using QUBOTools

julia> model = convert(QUBO, model)
julia> model = QUBOTools.read_model("problem.json")

julia> write("problem.qubo", model)
```
Expand All @@ -74,7 +74,7 @@ A brief explanation about it can be found in [qbsolv](https://github.com/arconde
### [Qubist](/docs/models/Qubist.md) `rw`
This is the simplest of all current supported formats.

### [MiniZinc](/docs/models/MiniZinc.md) `w`
### [MiniZinc](/docs/models/MiniZinc.md) `rw`
[MiniZinc](https://www.minizinc.org) is a constraint modelling language that can be used as input for many solvers.

### [HFS](/docs/models/HFS.md) `w`
Expand Down

2 comments on commit b10838b

@pedromxavier
Copy link
Member 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/74274

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

Please sign in to comment.