Skip to content

Commit

Permalink
bump versions, add release instructions to contributing guide
Browse files Browse the repository at this point in the history
  • Loading branch information
ianspektor committed Jul 13, 2023
1 parent eb99e9c commit 086f021
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ All submissions, including submissions by project members, require review. We us

All new contributions must pass all the tests and checks performed by GitHub actions, and any changes to docstrings must respect the [docstring guidelines](docs/docstring_guidelines.md).

## Release to PyPI

The Python package is built and published to PyPI when a new release is created in GitHub.

To create a new release, follow these steps:

1. Push a new commit to `main` updating the version number in `pyproject.toml` and `temporian/__init__.py` to the new version number (e.g. `1.3.2`).
2. Create a new [GitHub release](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository#creating-a-release) with the new version's name prepended with `v`, e.g. `v1.3.2`.

## Development

### Environment Setup
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "temporian"
version = "0.1.1"
version = "0.1.2"
description = "Temporian is a Python package for feature engineering of temporal data, focusing on preventing common modeling errors and providing a simple and powerful API, a first-class iterative development experience, and efficient and well-tested implementations of common and not-so-common temporal data preprocessing functions."
authors = [
"Mathieu Guillame-Bert, Braulio Ríos, Guillermo Etchebarne, Ian Spektor, Richard Stotz <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion temporian/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# from temporian.module import submodule as _submodule
# del _submodule

__version__ = "0.1.1"
__version__ = "0.1.2"

# Register all operator implementations
from temporian.implementation.numpy import operators as _impls
Expand Down

0 comments on commit 086f021

Please sign in to comment.