Skip to content

Commit

Permalink
REL: set version to 0.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolodi authored and rgommers committed Jun 27, 2023
1 parent a796b68 commit 10aec50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: MIT

project('meson-python', version: '0.14.0.dev0')
project('meson-python', version: '0.13.2')

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 @@ -66,7 +66,7 @@
T = TypeVar('T')


__version__ = '0.14.0.dev0'
__version__ = '0.13.2'


# XXX: Once Python 3.8 is our minimum supported version, get rid of
Expand Down

5 comments on commit 10aec50

@kloczek
Copy link

@kloczek kloczek commented on 10aec50 Jul 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it possible next time on release new version make the github release to have entry on https://github.com/mesonbuild/meson-python/releases? 🤔

I'm asking because only on make gh release is spread notification about new release to those who have set watch->releases.

@rgommers
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kloczek FYI there is a new release. I looked at this request, but our Releases page is empty and it's extra manual steps to update it, and more to backfill that for older releases to make it consistent. So I'd rather leave it empty.

Here are ways to get release notifications for PyPI: https://stackoverflow.com/questions/17395151/how-can-i-subscribe-to-updates-of-a-package-on-pypi.

@kloczek
Copy link

@kloczek kloczek commented on 10aec50 Sep 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm working on Linux/Solaris distribution and I have some automation which processes GH releases.
Issue is that in that distribution python packages are only small fraction of the whole packages population and at the same time more than 4/5 of all packages source trees are on github (another 5% on wariuje gitlab locations).

As your repo already is using github workflows it is easy ay to add one line change to workflows
jbms/sphinx-immaterial#281 (comment)

@rgommers
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are not using a GHA workflow for a release, since we're GPG signing all artifacts.

It is a lot easier for you to do the one-time effort to monitor PyPI in addition to GitHub Releases than it is for all Python package authors to do extra work here to fulfill your request. Please just start using one of the available RSS feeds for PyPI.

@kloczek
Copy link

@kloczek kloczek commented on 10aec50 Sep 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

BTW signin.
I'm n ot sure that you can sign commits.
https://docs.github.com/en/authentication/managing-commit-signature-verification/displaying-verification-statuses-for-all-of-your-commits
It is as well possible to sign tags and GH additional release assets.

Please sign in to comment.