Skip to content

Commit

Permalink
Bump version numbers for rc1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpakkane committed Jan 2, 2022
1 parent c8733f6 commit 09f52a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion man/meson.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH MESON "1" "October 2021" "meson 0.60.0" "User Commands"
.TH MESON "1" "January 2022" "meson 0.61.0" "User Commands"
.SH NAME
meson - a high productivity build system
.SH DESCRIPTION
Expand Down
5 changes: 4 additions & 1 deletion mesonbuild/coredata.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@
CompilerCheckCacheKey = T.Tuple[T.Tuple[str, ...], str, FileOrString, T.Tuple[str, ...], str]

# Check major_versions_differ() if changing versioning scheme.
version = '0.60.99'
#
# Pip requires that RCs are named like this: '0.1.0.rc1'
# But the corresponding Git tag needs to be '0.1.0rc1'
version = '0.61.0.rc1'

backendlist = ['ninja', 'vs', 'vs2010', 'vs2012', 'vs2013', 'vs2015', 'vs2017', 'vs2019', 'vs2022', 'xcode']

Expand Down

0 comments on commit 09f52a3

Please sign in to comment.