Skip to content

Commit

Permalink
REL: update version to 0.7.0.dev0
Browse files Browse the repository at this point in the history
This is good practice I think, but more importantly: it makes it
easy to distinguish between versions installed from source during
development and versions installed from PyPI or conda-forge. It
has happened to me multiple times already that I see a possible
issue in SciPy that may be related, or that I know is fixed in `main`
but not the latest release, and want to check the version to
distinguish between those two.
  • Loading branch information
rgommers authored and FFY00 committed Jul 8, 2022
1 parent 5fd88a1 commit 0e74a65
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('mesonpy', version: '0.6.0')
project('mesonpy', version: '0.7.0.dev0')

py_mod = import('python')
py = py_mod.find_installation()
Expand Down
2 changes: 1 addition & 1 deletion mesonpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
import wheel.wheelfile # noqa: F401


__version__ = '0.6.0'
__version__ = '0.7.0.dev0'


class _depstr:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ requires = [

[project]
name = 'meson-python'
version = '0.6.0'
version = '0.7.0.dev0'
description = 'Meson Python build backend (PEP 517)'
readme = 'README.md'
requires-python = '>=3.7'
Expand Down

0 comments on commit 0e74a65

Please sign in to comment.