Skip to content

Commit

Permalink
Tag 0.14.0 (#3114)
Browse files Browse the repository at this point in the history
* Version 0.14.0

* Move `is_embedded` import

* Update year to `2024`

---------

Co-authored-by: Lars Göttgens <lars.goettgens@rwth-aachen.de>
  • Loading branch information
thofma and lgoettgens committed Jan 10, 2024
1 parent 448c2f9 commit 999cc8e
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Project.toml
@@ -1,7 +1,7 @@
name = "Oscar"
uuid = "f1435218-dba5-11e9-1e4d-f1a5fab5fc13"
authors = ["The OSCAR Team <oscar@mathematik.uni-kl.de>"]
version = "0.14.0-DEV"
version = "0.14.0"

[deps]
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -42,10 +42,10 @@ julia> using Oscar
----- ----- ----- - - - -

...combining (and extending) ANTIC, GAP, Polymake and Singular
Version 0.14.0-DEV ...
Version 0.14.0 ...
... which comes with absolutely no warranty whatsoever
Type: '?Oscar' for more information
(c) 2019-2023 by The OSCAR Development Team
(c) 2019-2024 by The OSCAR Development Team

julia> k, a = quadratic_field(-5)
(Imaginary quadratic field defined by x^2 + 5, sqrt(-5))
Expand Down Expand Up @@ -133,7 +133,7 @@ pm::Array<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.14.0-DEV, The OSCAR Team, 2023. (https://www.oscar-system.org)
OSCAR -- Open Source Computer Algebra Research system, Version 0.14.0, The OSCAR Team, 2024. (https://www.oscar-system.org)
[OSCAR-book]
Wolfram Decker, Christian Eder, Claus Fieker, Max Horn, Michael Joswig, The OSCAR book, 2024.

Expand All @@ -143,8 +143,8 @@ 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.14.0-DEV},
year = {2023},
Version 0.14.0},
year = {2024},
url = {https://www.oscar-system.org},
}

Expand Down
2 changes: 1 addition & 1 deletion docs/oscar_references.bib
Expand Up @@ -1506,7 +1506,7 @@ @Misc{OEIS
author = {{OEIS Foundation Inc.}},
title = {The {O}n-{L}ine {E}ncyclopedia of {I}nteger {S}equences},
howpublished = {Published electronically at \url{https://oeis.org}},
year = {2023},
year = {2024},
url = {https://oeis.org}
}

Expand Down
4 changes: 2 additions & 2 deletions gap/OscarInterface/PackageInfo.g
Expand Up @@ -10,8 +10,8 @@ SetPackageInfo( rec(

PackageName := "OscarInterface",
Subtitle := "GAP interface to OSCAR",
Version := "0.14.0-DEV",
Date := "16/10/2023", # dd/mm/yyyy format
Version := "0.14.0",
Date := "10/01/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down
2 changes: 1 addition & 1 deletion src/Oscar.jl
Expand Up @@ -63,7 +63,7 @@ function __init__()
print("... \n ... which comes with absolutely no warranty whatsoever")
println()
println("Type: '?Oscar' for more information")
println("(c) 2019-2023 by The OSCAR Development Team")
println("(c) 2019-2024 by The OSCAR Development Team")
end

append!(_gap_group_types,
Expand Down
1 change: 0 additions & 1 deletion src/aliases.jl
@@ -1,7 +1,6 @@
include(joinpath(pathof(AbstractAlgebra), "..", "Aliases.jl"))

import Nemo: is_cyclo_type
import Nemo: is_embedded
import Nemo: is_maxreal_type
import Nemo: ZZModRing # FIXME: remove if/once Nemo exports this
import Nemo: zzModRing # FIXME: remove if/once Nemo exports this
Expand Down
1 change: 1 addition & 0 deletions src/imports.jl
Expand Up @@ -138,6 +138,7 @@ import Nemo:
fqPolyRepFieldElem,
fraction_field,
height,
is_embedded,
is_prime,
is_probable_prime,
is_square,
Expand Down

2 comments on commit 999cc8e

@thofma
Copy link
Collaborator Author

@thofma thofma commented on 999cc8e Jan 11, 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/98693

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.14.0 -m "<description of version>" 999cc8e46f977cb0091b59fd2ff2a572f401237e
git push origin v0.14.0

Please sign in to comment.