diff --git a/Project.toml b/Project.toml index 96c05f1bd3c8..8e2401203465 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Oscar" uuid = "f1435218-dba5-11e9-1e4d-f1a5fab5fc13" authors = ["The OSCAR Team "] -version = "0.14.0-DEV" +version = "0.14.0" [deps] AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d" diff --git a/README.md b/README.md index 10cd91fa35ab..5f40a2f381f2 100644 --- a/README.md +++ b/README.md @@ -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)) @@ -133,7 +133,7 @@ pm::Array > 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. @@ -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}, } diff --git a/docs/oscar_references.bib b/docs/oscar_references.bib index 31177ac370af..a0173fbb0b00 100644 --- a/docs/oscar_references.bib +++ b/docs/oscar_references.bib @@ -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} } diff --git a/gap/OscarInterface/PackageInfo.g b/gap/OscarInterface/PackageInfo.g index 54a6c135ea11..4816409f421c 100644 --- a/gap/OscarInterface/PackageInfo.g +++ b/gap/OscarInterface/PackageInfo.g @@ -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 := [ diff --git a/src/Oscar.jl b/src/Oscar.jl index ea7c8ea4ad82..f06a71de8879 100644 --- a/src/Oscar.jl +++ b/src/Oscar.jl @@ -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, diff --git a/src/aliases.jl b/src/aliases.jl index 219b5ea7da6d..93099262a799 100644 --- a/src/aliases.jl +++ b/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 diff --git a/src/imports.jl b/src/imports.jl index f99259830756..018181c0509f 100644 --- a/src/imports.jl +++ b/src/imports.jl @@ -138,6 +138,7 @@ import Nemo: fqPolyRepFieldElem, fraction_field, height, + is_embedded, is_prime, is_probable_prime, is_square,