Skip to content

Commit

Permalink
Update patchlevel for version 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
copperwater committed May 26, 2022
1 parent be9a7ce commit 7b1ce94
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion doc/xnethack-new-version-runbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ Assumed premises:
`VERSION_COMPATIBILITY` in patchlevel.h. Reset `EDITLEVEL` to 0 if it isn't
already. Update `NH_DEVEL_STATUS` to `NH_STATUS_RELEASED` if it isn't already
(it tends to not get changed from that except by the vanilla devteam). Update
`NETHACK_VERSION` in sys/windows/Makefile.msc (blargh). Commit these changes.
`NETHACK_VERSION` in sys/windows/Makefile.nmake (blargh). Commit these
changes.
10. Tag the patchlevel commit, e.g. `xnh5.0`, via `git tag -a xnh5.0`. Write the
tag message using previous release tags as an example (xnh6.0 is a good
matter-of-fact one). Mention that Windows binaries are available to download
Expand Down
6 changes: 3 additions & 3 deletions include/patchlevel.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#ifndef PATCHLEVEL_H
#define PATCHLEVEL_H

/* xNetHack 7.0 */
/* xNetHack 7.1 */
#define VERSION_MAJOR 7
#define VERSION_MINOR 0
#define VERSION_MINOR 1
/*
* PATCHLEVEL is updated for each release.
*/
Expand All @@ -17,7 +17,7 @@
* Incrementing EDITLEVEL can be used to force invalidation of old bones
* and save files.
*/
#define EDITLEVEL 1
#define EDITLEVEL 0

/*
* Development status possibilities.
Expand Down
2 changes: 1 addition & 1 deletion sys/windows/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ GIT_AVAILABLE=Y
#==============================================================================
#
# The version of the game this Makefile was designed for
NETHACK_VERSION="7.0.0"
NETHACK_VERSION="7.1.0"

# A brief version for use in macros
NHV=$(NETHACK_VERSION:.=)
Expand Down

0 comments on commit 7b1ce94

Please sign in to comment.