Skip to content

Commit

Permalink
Added release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ganelson committed Aug 21, 2022
1 parent dc9a766 commit b072a0b
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 4 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Intest 2.1.0

v2.1.0-beta+1A39 'The Remembering' (22 June 2022)
[Version](notes/versioning.md): 2.1.0-beta+1A40 'The Remembering' (21 August 2022)

## About Intest

Expand Down Expand Up @@ -33,6 +33,9 @@ This is in order that there can be clear ownership.

## Build Instructions

**Caution**: The `main` branch of this repository generally holds "unstable", that is,
unreleased work-in-progress versions of Intest. See [notes/versioning.md](notes/versioning.md).

Make a directory in which to work: let's call this "work". Then:

* Change the current directory to this: "cd work"
Expand Down
4 changes: 2 additions & 2 deletions build.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Prerelease: beta
Build Date: 22 June 2022
Build Number: 1A39
Build Date: 21 August 2022
Build Number: 1A40
7 changes: 7 additions & 0 deletions notes/release/2-1-0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Release notes for Intest v2.1.0

This release was made in August 2022, and was the first proper release for major
version 2. This release is the baseline for Intest release notes from here on.
<hr>

Return to the [table of Intest release notes here](../version_history.md).
11 changes: 11 additions & 0 deletions notes/version_history.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Version history

See [versioning](versioning.md) for details of Intest's version numbering.

Links in the following table are to the archive of release notes, which
covers only the open-source era of Intest. (Version 1, code-named "The Revealing
Science of God", was written in Perl in 2006 and was very different.)

Version | Build | Date | Highlights
--------------------------- | ----- | -------------- | ----------
[2.1.0](release/2-1-0.md) | 1A40 | August 2022 | First open-source release
27 changes: 27 additions & 0 deletions notes/versioning.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Branching and versioning policy

## Version numbers for Intest

Intest is developed in public. Command-line users comfortable with git can always get the very latest state. But that potentially means endless different versions of Intest out there in the wild. To clarify this situation, all versions are numbered, and we will distinguish between "release" versions, which are ready for public use, and "unstable" versions, which are not.

"Release" versions have simple version numbers in the shape `X.Y.Z`: for example, `2.1.0`.

"Unstable" versions are commits of the software between releases. These have much longer version numbers, containing an `-alpha` or `-beta` warning. For example, `2.1.0-beta+1B14`. (The `+1B14` is a daily build number, also only
present on version numbers of unstable versions.)

Note that `intest -version` prints out the full version number of the core
source it was compiled from. This one is clearly unstable:

$ intest/Tangled/intest -version
intest version 2.1.0-beta+1A38 'The Remembering' (31 May 2022)

(It is now unclear why major versions of Intest are named after [the movements of Tales from Topographic Oceans](https://en.wikipedia.org/wiki/Tales_from_Topographic_Oceans).
But such is life, and major version 3 will have to be called "The Ancient".)

Release notes for releases since 2022 can be found [here](version_history.md).

## Branching

In the core Intest repository, active development is on the `master` branch, at least for now. That will always be a version which is unstable. All releases will be made from short branches off of `master`. For example, there will soon be a branch called `r2.1`. This will contain as few commits as possible, ideally just one, which would be the actual release version of 2.1.0. But if there are then point updates with bug fixes, say 2.1.1, 2.1.2, and so on, those would be further commits to the `r2.1` branch. Later, another short branch from `master` would be `r2.2`.

Releases will be tagged with their version numbers, so the commit representing 2.1.0 will be tagged `v2.1.0`. These will be presented under Releases in the usual Github way, from the column on the right-hand side of the home page. We expect to provide the app installers as associated binary files on those releases, though that won't be the only place they are available.
5 changes: 4 additions & 1 deletion scripts/intest.rmscript
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Intest {bibliographic datum: Version Number of: intest}

v{bibliographic datum: Semantic Version Number of: intest} '{bibliographic datum: Version Name of: intest}' ({bibliographic datum: Build Date of: intest})
[Version](notes/versioning.md): {bibliographic datum: Semantic Version Number of: intest} '{bibliographic datum: Version Name of: intest}' ({bibliographic datum: Build Date of: intest})

## About Intest

Expand Down Expand Up @@ -37,6 +37,9 @@ This is in order that there can be clear ownership.

## Build Instructions

**Caution**: The `main` branch of this repository generally holds "unstable", that is,
unreleased work-in-progress versions of Intest. See [notes/versioning.md](notes/versioning.md).

Make a directory in which to work: let's call this "work". Then:

* Change the current directory to this: "cd work"
Expand Down

0 comments on commit b072a0b

Please sign in to comment.