Skip to content

Commit

Permalink
Bump version: 0.5 → 1.0.0b1
Browse files Browse the repository at this point in the history
  • Loading branch information
stinovlas committed Feb 1, 2024
1 parent d3837ec commit 22ea60b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 17 deletions.
13 changes: 0 additions & 13 deletions .bumpversion.cfg

This file was deleted.

8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ ChangeLog
Unreleased
----------

1.0.0b1 (2024-02-01)
--------------------

* Inject ``build_grpc`` as ``build`` subcommand (#7).
* This means that you should no longer modify the ``build`` command in your ``setup.py``.
``build_grpc`` is automatically injected as first subcommand of ``build``.
* Use ruff instead of flake8, isort and black.

0.5 (2023-12-14)
----------------

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Configuration

You have to specify ``setuptools-grpc`` as part of build backend requirements.
This follows specification introduced in `PEP 518 <https://peps.python.org/pep-0518/>`_.
You can read more about it in `setuptools docs <https://setuptools.pypa.io/en/latest/build_meta.html>`_.
You can read more about it in `setuptools docs <https://setuptools.pypa.io/en/latest/build_meta.html>`__.

.. code-block:: toml
Expand All @@ -100,7 +100,7 @@ otherwise ``setuptools_grpc`` won't do anything.
proto_path = ./src
output_path = ./out
It's also recommended to add generated files to your ``MANIFEST.in``. Otherwise they might be missing from the built wheel. See `setuptools docs <https://setuptools.pypa.io/en/latest/userguide/miscellaneous.html#controlling-files-in-the-distribution>`_ for more details about how files are included in the distribution.
It's also recommended to add generated files to your ``MANIFEST.in``. Otherwise they might be missing from the built wheel. See `setuptools docs <https://setuptools.pypa.io/en/latest/userguide/miscellaneous.html#controlling-files-in-the-distribution>`__ for more details about how files are included in the distribution.

.. code-block::
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = setuptools-grpc
version = 0.5
version = attr: setuptools_grpc.__version__
author = Jan Musílek
author_email = [email protected]
description = Plugin for setuptools and grpc / protobuf python module build
Expand Down
2 changes: 1 addition & 1 deletion setuptools_grpc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import Command, Distribution

__version__ = "0.5"
__version__ = "1.0.0b1"


def has_grpc(build: Command) -> bool:
Expand Down

0 comments on commit 22ea60b

Please sign in to comment.