Skip to content

Commit

Permalink
Bump to 0.11.1 (#1775)
Browse files Browse the repository at this point in the history
* Version 0.11.1

* suppress save output
  • Loading branch information
thofma authored Nov 30, 2022
1 parent 4ed5b51 commit 387f8f2
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Oscar"
uuid = "f1435218-dba5-11e9-1e4d-f1a5fab5fc13"
authors = ["The OSCAR Team <[email protected]>"]
version = "0.11.1-DEV"
version = "0.11.1"

[deps]
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ julia> using Oscar
----- ----- ----- - - - -

...combining (and extending) ANTIC, GAP, Polymake and Singular
Version 0.11.1-DEV ...
Version 0.11.1 ...
... which comes with absolutely no warranty whatsoever
Type: '?Oscar' for more information
(c) 2019-2022 by The OSCAR Development Team
Expand Down Expand Up @@ -129,7 +129,7 @@ PropertyValue wrapping pm::Array<polymake::topaz::HomologyGroup<pm::Integer>>
If you have used OSCAR in the preparation of a paper please cite it as described below:

[OSCAR]
OSCAR -- Open Source Computer Algebra Research system, Version 0.11.1-DEV The OSCAR Team, 2022. (https://oscar.computeralgebra.de)
OSCAR -- Open Source Computer Algebra Research system, Version 0.11.1 The OSCAR Team, 2022. (https://oscar.computeralgebra.de)
[OSCAR-book]
Christian Eder, Wolfram Decker, Claus Fieker, Max Horn, Michael Joswig, The OSCAR book, 2024.

Expand All @@ -139,7 +139,7 @@ If you are using BibTeX, you can use the following BibTeX entries:
key = {OSCAR},
organization = {The OSCAR Team},
title = {OSCAR -- Open Source Computer Algebra Research system,
Version 0.11.1-DEV},
Version 0.11.1},
year = {2022},
url = {https://oscar.computeralgebra.de},
}
Expand Down
3 changes: 1 addition & 2 deletions docs/src/PolyhedralGeometry/Polyhedra/serialization.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ following way:
julia> square = cube(2)
A polyhedron in ambient dimension 2
julia> save("square.poly", square)
739
julia> save("square.poly", square);
julia> s = load("square.poly")
A polyhedron in ambient dimension 2
Expand Down
3 changes: 1 addition & 2 deletions docs/src/PolyhedralGeometry/cones.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ following way:
julia> C = positive_hull([1 0; 0 1])
A polyhedral cone in ambient dimension 2
julia> save("C.cone", C)
434
julia> save("C.cone", C);
julia> CC = load("C.cone")
A polyhedral cone in ambient dimension 2
Expand Down
3 changes: 1 addition & 2 deletions docs/src/PolyhedralGeometry/fans.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ A polyhedron in ambient dimension 2
julia> fan = normal_fan(square)
A polyhedral fan in ambient dimension 2
julia> save("F.fan", fan)
610
julia> save("F.fan", fan);
julia> f = load("F.fan")
A polyhedral fan in ambient dimension 2
Expand Down
3 changes: 1 addition & 2 deletions docs/src/PolyhedralGeometry/linear_programs.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,7 @@ where P is a Polyhedron{fmpq} and
c=Polymake.Rational[1 2 -3]
k=0
julia> save("lp.poly", LP)
1185
julia> save("lp.poly", LP);
julia> LP0 = load("lp.poly")
The linear program
Expand Down

2 comments on commit 387f8f2

@thofma
Copy link
Collaborator Author

@thofma thofma commented on 387f8f2 Nov 30, 2022

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

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.1 -m "<description of version>" 387f8f2e46260c6e4e3b6a681a9a9ea0111bdc88
git push origin v0.11.1

Please sign in to comment.