Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
attipaci committed Jan 15, 2025
1 parent ea0043c commit 4db0803
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [Unreleased]
## [1.2.0] - 2025-01-15

Release candidate for the next feature release, expected around 1 February 2025.
Feature release. New easy to use adapter modules for CALCEPH or the NAIF CSPICE Toolkit to provide precise positions
for Solar-system sources. Also, added support for Keplerian orbitals, such as the ones published by the IAU Minor
Planet Center (MPC) for asteroids, comets, and Near-Earth-Objects (NEOs). And, many more fixes and improvements.


### Fixed
Expand All @@ -19,6 +21,8 @@ Release candidate for the next feature release, expected around 1 February 2025.
- Fixed dummy `readeph()` implementation in `readeph0.c`, and the use of `DEFAULT_READEPH` in `config.mk`. `readeph0.c`
is not linked by default, and was not linked in prior releases either.

- Cure LLVM `clang` compiler warnings, in tests and examples also.


### Added

Expand Down Expand Up @@ -130,7 +134,7 @@ Release candidate for the next feature release, expected around 1 February 2025.

- Various small tweaks to Makefiles.

- Updated `README.md` documentation.
- Updated `README.md` and API documentation.



Expand Down
5 changes: 3 additions & 2 deletions config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ ifdef DEFAULT_READEPH
endif

# Use ldconfig (if available) to detect CALCEPH / CSPICE shared libs automatically
ifneq ($(shell which ldconfig > /dev/null 2>&1), )
ifneq ($(shell which ldconfig), )
# Detect CALCEPH automatically, and enable support if present
ifndef CALCEPH_SUPPORT
ifneq ($(shell ldconfig -p | grep libcalceph), )
Expand Down Expand Up @@ -225,4 +225,5 @@ OBJECTS := $(subst .c,.o,$(OBJECTS))
vpath %.h $(INCLUDE)
vpath %.c $(SRC)
vpath %.o $(OBJ)
vpath %.d dep
vpath %.d dep

4 changes: 2 additions & 2 deletions include/novas.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
/// Integer sub version of the release
#define SUPERNOVAS_PATCHLEVEL 0

/// Additional release information in version, e.g. "-1", or "-rc1".
#define SUPERNOVAS_RELEASE_STRING "-devel"
/// Additional release information in version, e.g. "-1", or "-rc1", or empty string "" for releases.
#define SUPERNOVAS_RELEASE_STRING ""

/// \cond PRIVATE

Expand Down

0 comments on commit 4db0803

Please sign in to comment.