Skip to content

Commit

Permalink
Tag 0.14.0 (oscar-system#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 <[email protected]>
  • Loading branch information
thofma and lgoettgens authored 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
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.14.0-DEV"
version = "0.14.0"

[deps]
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ import Nemo:
fqPolyRepFieldElem,
fraction_field,
height,
is_embedded,
is_prime,
is_probable_prime,
is_square,
Expand Down

0 comments on commit 999cc8e

Please sign in to comment.