Skip to content

Commit

Permalink
Merge pull request #233 from google/release-0.1.3
Browse files Browse the repository at this point in the history
Release v0.1.3
  • Loading branch information
Ian Spektor committed Aug 23, 2023
2 parents 89f8265 + e42467c commit c5a5dac
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
21 changes: 11 additions & 10 deletions CHANGELOG.md
@@ -1,21 +1,22 @@
# Changelog
# Release notes

## HEAD (might become 0.1.3)
## Latest changes (unreleased)

### Features

### Fixes

## 0.1.3

This is the first operational version of Temporian for users. The list whole and
detailed list of features is too long to be listed. The top features are:
detailed list of features is too long to be listed. The main features are:

### Feature
### Features

- Pypi release.
- PyPI release.
- 72 operators.
- Execution in eager, compiled mode, and graph mode.
- IO Support for Pandas, CSV, Numpy and TensorFlow datasets.
- Static and interactive plotting.
- Documentation (3 minutes intro, user guide and API references).
- 5 tutorials.

### Fix

- Proper error message when using distributed training on more than 2^31
(i.e., ~2B) examples while compiling YDF with 32-bits example index.
2 changes: 1 addition & 1 deletion docs/mkdocs.yml
Expand Up @@ -58,7 +58,7 @@ nav:
- Recipes: recipes/
- Tutorials: tutorials/
- API Reference: reference/ # generated by gen-files + literate-nav
- Changelog: CHANGELOG.md
- Release notes: CHANGELOG.md

# Plugins
plugins:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "temporian"
version = "0.1.2"
version = "0.1.3"
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 <gbm@google.com>",
Expand Down
2 changes: 1 addition & 1 deletion temporian/__init__.py
Expand Up @@ -25,7 +25,7 @@
# from temporian.module import submodule as _submodule
# del _submodule

__version__ = "0.1.2"
__version__ = "0.1.3"

# Register all operator implementations
from temporian.implementation.numpy import operators as _impls
Expand Down
8 changes: 5 additions & 3 deletions tools/RELEASE.md
Expand Up @@ -4,9 +4,11 @@ The Python package is built and published to PyPI when a new release is created

To create a new release, follow these steps:

1. Update the version number in `pyproject.toml` and `temporian/__init__.py` to the new version number (e.g. `1.3.2`) and push that commit to `main`.
1. Update the version number in `pyproject.toml` and `temporian/__init__.py` to the new version number (e.g. `1.3.2`), commit, and open and merge a PR to `main`, titled `Release v1.3.2` in this case.

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`.
2. Edit the [changelog](../CHANGELOG.md) by moving the latest changes to the new version's section and clearing the latest changes one.

3. Tag that commit as the new stable version with `git tag stable -f`, and push it with `git push origin stable -f`.
3. 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`.

4. Tag that commit as the new stable version with `git tag stable -f`, and push it with `git push origin stable -f`.
- This gives us a way to easily find the latest stable version of the code in the GitHub tree (used for example by the tutorial notebooks to not open an unreleased version of the notebooks).

0 comments on commit c5a5dac

Please sign in to comment.