Skip to content

Commit

Permalink
Merge dev into samukweku/non-equi-join-improve
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmjl authored Oct 1, 2024
2 parents 3510269 + dfae45f commit a94f13b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.29.1
current_version = 0.29.2
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ repos:

# The interim replacement for darglint is pydoclint.
- repo: https://github.com/jsh9/pydoclint
rev: 0.5.8
rev: 0.5.9
hooks:
- id: pydoclint
args:
- "--config=pyproject.toml"
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.6.7
rev: v0.6.8
hooks:
- id: ruff
args: [--fix]
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [v0.29.2] - 2024-09-28

## [v0.29.1] - 2024-09-23

## [v0.29.0] - 2024-09-15
Expand Down Expand Up @@ -382,7 +384,9 @@ We thank all contributors
who have helped make `pyjanitor`
the package that it is today.

[Unreleased]: https://github.com/pyjanitor-devs/pyjanitor/compare/v0.29.1...HEAD
[Unreleased]: https://github.com/pyjanitor-devs/pyjanitor/compare/v0.29.2...HEAD

[v0.29.2]: https://github.com/pyjanitor-devs/pyjanitor/compare/v0.29.1...v0.29.2

[v0.29.1]: https://github.com/pyjanitor-devs/pyjanitor/compare/v0.29.0...v0.29.1

Expand Down
2 changes: 1 addition & 1 deletion janitor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ def get_features_targets(*args, **kwargs):
return _get_features_targets(*args, **kwargs)


__version__ = "0.29.1"
__version__ = "0.29.2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def generate_long_description() -> str:

setup(
name="pyjanitor",
version="0.29.1",
version="0.29.2",
description="Tools for cleaning pandas DataFrames",
author="pyjanitor devs",
author_email="ericmajinglong@gmail.com",
Expand Down

0 comments on commit a94f13b

Please sign in to comment.