Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 7a6567cf authored by Andreas Enge's avatar Andreas Enge
Browse files

Release 0.4.3.

* configure.ac, lib/cm.h, lib/get_version.c, doc/version.texi: Update
  version and date.
* NEWS: Add an entry.
* lib/Makefile.am (libcm_la_LDFLAGS): Update version info.
parent 741ca767
No related branches found
No related tags found
No related merge requests found
Recent changes:
Changes in version 0.4.3 ("Fitzebohnen"), released in February 2024:
- Support FLINT version 3.
- Add an upper bound on the permitted class number in ECPP, to avoid
choosing discriminants for which class polynomials cannot be computed
in reasonable time and with reasonable memory.
......
/*
configure.ac
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2015, 2016, 2018, 2021, 2022, 2023 Andreas Enge
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2015, 2016, 2018, 2021, 2022, 2023, 2024 Andreas Enge
This file is part of CM.
......@@ -21,7 +21,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
AC_PREREQ([2.69])
AC_INIT([cm],[0.4.3dev],[andreas.enge@inria.fr])
AC_INIT([cm],[0.4.3],[andreas.enge@inria.fr])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_SRCDIR([lib/cm.h])
AC_CONFIG_HEADERS([config.h])
......
@set UPDATED 12 January 2024
@set UPDATED-MONTH January 2024
@set EDITION 0.4.3dev
@set VERSION 0.4.3dev
@set UPDATED 23 February 2024
@set UPDATED-MONTH February 2024
@set EDITION 0.4.3
@set VERSION 0.4.3
......@@ -7,7 +7,7 @@ if MPI
lib_LTLIBRARIES += libcm_mpi.la
endif
libcm_la_LDFLAGS = -version-info 1:1:0
libcm_la_LDFLAGS = -version-info 2:0:1
libcm_la_SOURCES = cm.h cm-arith.h cm-impl.h get_version.c \
timer.c file.c nt.c qdev.c modular.c modpol.c mpzx.c classgroup.c \
......
/*
cm.h - header file for the cm library
Copyright (C) 2009, 2010, 2012, 2015, 2016, 2018, 2021, 2022, 2023 Andreas Enge
Copyright (C) 2009, 2010, 2012, 2015, 2016, 2018, 2021, 2022, 2023, 2024 Andreas Enge
This file is part of CM.
......@@ -34,7 +34,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define CM_VERSION_MAJOR 0
#define CM_VERSION_MINOR 4
#define CM_VERSION_PATCHLEVEL 3
#define CM_VERSION_STRING "0.4.3dev"
#define CM_VERSION_STRING "0.4.3"
#define CM_MODPOL_J 'j'
#define CM_MODPOL_DOUBLEETA 'd'
......
/*
get_version.c - print the CM version
Copyright (C) 2022, 2023 Andreas Enge
Copyright (C) 2022, 2023, 2024 Andreas Enge
This file is part of CM.
......@@ -23,6 +23,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "cm-impl.h"
const char *cm_get_version (void) {
return "0.4.3dev";
return "0.4.3";
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment