Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup version #73

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ in this source distribution.
Differences from SOFA
---------------------

This version of ERFA (v1.7.1) is based on SOFA version "20200721", with the
This version of ERFA (v1.7.2) is based on SOFA version "20200721", with the
differences outlined below.

ERFA branding
Expand Down Expand Up @@ -52,6 +52,14 @@ Bug fixes
ERFA includes smaller changes that may or may not eventually make it into SOFA,
addressing localized bugs or similar smaller issues:

* ERFA 1.7.2 and SOFA "20200721"

+ Only bug fixes in the SOFA release. The only differences between ERFA 1.7.2
and SOFA "20200721" remain the added ``eraVersion``, ``eraSofaVersion``, and
leap second functions noted above.
+ Fixes a bug in ERFA 1.7.1 that ``eraVersion`` would return 1.7.0 if
compiled directly rather than created as part of the library with ``make``.

* ERFA 1.7.1 and SOFA "20200721"

+ Only bug fixes in the SOFA release. The only differences between ERFA 1.7.1
Expand Down
3 changes: 3 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ permissions.
described above). Ensure the list of changes is accurate for this new
version.

* Also update the version in ``src/erfaversion.c``, in all relevant ``#define``
statements.

* Commit these changes using ``git commit``, with a commit message like
``Preparing release v0.0.1``.

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

AC_PREREQ([2.68])
## Follow the instructions in RELEASE.rst to change package version
AC_INIT([erfa],[1.7.1])
AC_INIT([erfa],[1.7.2])
AC_CONFIG_SRCDIR([src/erfa.h])
AC_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([m4])
Expand All @@ -17,7 +17,7 @@ ERFA_NUMVER
## A library supports interfaces from current downto current - age
## Revision is the version of the current interface
## Follow the instructions in RELEASE.rst to change the version info
ERFA_LIB_VERSION_INFO(8, 1, 7)
ERFA_LIB_VERSION_INFO(8, 2, 7)

## SOFA version, update if needed in new relases
AC_DEFINE([SOFA_VERSION], ["20200721"], [Define to the version of SOFA])
Expand Down
8 changes: 4 additions & 4 deletions src/erfaversion.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
*/

/* Define to the version of this package. */
#define PACKAGE_VERSION "1.7.0"
#define PACKAGE_VERSION "1.7.2"

/* Define to the major version of this package. */
#define PACKAGE_VERSION_MAJOR 1

/* Define to the micro version of this package. */
#define PACKAGE_VERSION_MICRO 0

/* Define to the minor version of this package. */
#define PACKAGE_VERSION_MINOR 7

/* Define to the micro version of this package. */
#define PACKAGE_VERSION_MICRO 2

/* Define to the version of SOFA */
#define SOFA_VERSION "20190722"

Expand Down