Skip to content

Commit

Permalink
release 2022-06-29 (#579)
Browse files Browse the repository at this point in the history
* Add CODA_OSS_VERSION and config::coda_oss_version

* macros for creating and extracting parts of a version number: MAJOR.MINOR.PATCH.BUILD

* be sure to get std intalled

* Ready to cut a new release; update version

* Release 2021_12_13

* prepare to release version 2022-02-22 (i.e., 2/22/22)

* release 2022-05-03

* coda-oss release 2022-06-29
  • Loading branch information
J. Daniel Smith authored Jun 29, 2022
1 parent 59387bd commit a731ebf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
```
# coda-oss Release Notes

## Release 2022-??-??
## Release 2022-06-29
* remove **modules/drivers/boost** as it was empty (and unused);
**modules/c++/serialize** depended on boost, so it has also been removed.
* Update to [zlib 1.2.12](https://www.zlib.net/zlib-1.2.12.tar.gz),
Expand Down
6 changes: 3 additions & 3 deletions modules/c++/config/include/config/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ static_assert(CODA_OSS_MAKE_VERSION_MMPB(9999, 9999, 9999, 9999) <= UINT64_MAX,

// Do this ala C++ ... we don't currently have major/minor/patch
//#define CODA_OSS_VERSION_ 20210910L // c.f. __cplusplus
#define CODA_OSS_VERSION_ 2022 ## 0005 ## 0003 ## 0000 ## L
#define CODA_OSS_VERSION_ 2022 ## 0006 ## 0029 ## 0000 ## L

// Use the same macros other projects might want to use; overkill for us.
#define CODA_OSS_VERSION_MAJOR 2022
#define CODA_OSS_VERSION_MINOR 5
#define CODA_OSS_VERSION_PATCH 3
#define CODA_OSS_VERSION_MINOR 6
#define CODA_OSS_VERSION_PATCH 29
#define CODA_OSS_VERSION_BUILD 0
#define CODA_OSS_VERSION CODA_OSS_MAKE_VERSION_MMPB(CODA_OSS_VERSION_MAJOR, CODA_OSS_VERSION_MINOR, CODA_OSS_VERSION_PATCH, CODA_OSS_VERSION_BUILD)

Expand Down

0 comments on commit a731ebf

Please sign in to comment.