Skip to content

Commit

Permalink
Commit 41
Browse files Browse the repository at this point in the history
- Three renamings in `not-autoversion.m4` (macro † `NR_RECORD_HISTORY_RC()` has
  been renamed to `NR_RECORD_HISTORY_RCO()`, macro † `NR_GET_EVENT_VSTATE_RC()`
  has been renamed to `NR_GET_EVENT_VSTATE_RCO()`, macro
  † `NR_FOR_EACH_EVENT_RC()` has been renamed to `NR_FOR_EACH_EVENT_RCO()`)
- The `introspect` directory has been added to the repository (for aiding
  debug)
- A new example has been added to the repository
  (`examples/not-autoversion/reverse-chronological-order`)
  • Loading branch information
madmurphy committed Feb 13, 2022
1 parent 17e4031 commit 42f0348
Show file tree
Hide file tree
Showing 24 changed files with 2,164 additions and 46 deletions.
19 changes: 17 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@ Change Log
==========


2.5.0
-----

Changes:

* Three renamings in `not-autoversion.m4` (macro † `NR_RECORD_HISTORY_RC()` has
been renamed to `NR_RECORD_HISTORY_RCO()`, macro † `NR_GET_EVENT_VSTATE_RC()`
has been renamed to `NR_GET_EVENT_VSTATE_RCO()`, macro
`NR_FOR_EACH_EVENT_RC()` has been renamed to `NR_FOR_EACH_EVENT_RCO()`)
* The `introspect` directory has been added to the repository (for aiding
debug)
* A new example has been added to the repository
(`examples/not-autoversion/reverse-chronological-order`)


2.4.0
-----

Expand All @@ -28,8 +43,8 @@ Changes:
* New macro `n4_retrieve()` has been created in `not-m4sugar.m4`
* New macro `NS_CATCH()` has been created in `not-autoshell.m4`
* New macro `NC_CPP_EXPAND()` has been created in `not-cc.m4`
* New macros `NR_RECORD_HISTORY_RC()`, `NR_GET_EVENT_VSTATE_RC()` and
`NR_FOR_EACH_EVENT_RC()` have been created in `not-autoversion.m4`
* New macros `NR_RECORD_HISTORY_RC()`, `NR_GET_EVENT_VSTATE_RC()` and
`NR_FOR_EACH_EVENT_RC()` have been created in `not-autoversion.m4`
* Code review (macro `NC_AUTOVERSION_SUBSTITUTIONS()` in `not-autoversion.m4`;
macros `NS_SETVARS()`, `NS_GETVAR()`, `NS_UNSET()`, `NS_MOVEVAR()` and
`NS_REPLACEVAR()` in `not-autoshell.m4`)
Expand Down
11 changes: 11 additions & 0 deletions examples/not-autoversion/reverse-chronological-order/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[package.json]
charset = utf-8
indent_style = tab
indent_size = 2

[{**.sh,configure.ac,**/Makefile.am,src/foobar.c,src/foobar.h}]
charset = utf-8
indent_style = tab
indent_size = 4
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
John Doe <me@example.com>
675 changes: 675 additions & 0 deletions examples/not-autoversion/reverse-chronological-order/COPYING

Large diffs are not rendered by default.

81 changes: 81 additions & 0 deletions examples/not-autoversion/reverse-chronological-order/ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
Change Log
==========


## 0.1.0 (2018-10-03)

**Foo Bar Library** has been published.


## 1.1.0 (2018-10-21)

Changes:

* The public headers have changed
* One or more milestones have been reached


## 1.1.1 (2018-10-29)

Changes:

* Minor changes in the package


## 1.1.2 (2018-11-12)

Changes:

* The implementation has been improved
* Minor changes in the package


## 1.2.0 (2018-12-03)

Changes:

* The implementation has been improved
* The public headers have changed


## 1.3.0 (2019-02-14)

Changes:

* The interface has changed
* The implementation has been improved
* Minor changes in the package


## 1.4.0 (2019-03-22)

Changes:

* The interface has changed


## 1.5.0 (2019-05-07)

Changes:

* The interface has changed
* The implementation has been improved
* Minor changes in the package


## 1.6.0 (2019-06-10)

Changes:

* The implementation has been improved
* One or more milestones have been reached


## 1.7.0 (2019-08-02)

Changes:

* The implementation has been improved
* The public headers have changed
* Minor changes in the package

47 changes: 47 additions & 0 deletions examples/not-autoversion/reverse-chronological-order/HISTORY.m4
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
NR_RECORD_HISTORY_RCO([[1]],

dnl *************** 1.7.0 (3:2:3) #1 ***************
[[2019-08-02],
[IMPLEMENTATION],
[HEADERS],
[MISCELLANEA]],

dnl *************** 1.6.0 (3:1:3) #0 ***************
[[2019-06-10],
[IMPLEMENTATION],
[MILESTONE]],

dnl *************** 1.5.0 (3:0:3) #0 ***************
[[2019-05-07],
[INTERFACE],
[IMPLEMENTATION],
[MISCELLANEA]],

dnl *************** 1.4.0 (2:0:2) #0 ***************
[[2019-03-22],
[INTERFACE]],

dnl *************** 1.3.0 (1:0:1) #0 ***************
[[2019-02-14],
[INTERFACE],
[IMPLEMENTATION],
[MISCELLANEA]],

dnl *************** 1.2.0 (0:2:0) #2 ***************
[[2018-12-03],
[IMPLEMENTATION],
[HEADERS]],

dnl *************** 1.1.2 (0:1:0) #1 ***************
[[2018-11-12],
[IMPLEMENTATION],
[MISCELLANEA]],

dnl *************** 1.1.1 (0:0:0) #1 ***************
[[2018-10-29],
[MISCELLANEA]],

dnl *************** 1.1.0 (0:0:0) #1 ***************
[[2018-10-21],
[HEADERS],
[MILESTONE]])
Loading

0 comments on commit 42f0348

Please sign in to comment.