Skip to content

Commit

Permalink
bump version 0.7.0 -> 0.7.1
Browse files Browse the repository at this point in the history
Supports Python>=3.8
  • Loading branch information
liran-funaro committed Jan 19, 2025
1 parent 33e4b8a commit 74ce440
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2006-2023, Liran Funaro.
Copyright (c) 2006-2025, Liran Funaro.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ safer execution.
# Install

```bash
pip install objsize==0.7.0
pip install objsize==0.7.1
```

# Basic Usage
Expand Down Expand Up @@ -330,7 +330,7 @@ main differences between `objsize` and `pympler`.

# License: BSD-3

Copyright (c) 2006-2023, Liran Funaro.
Copyright (c) 2006-2025, Liran Funaro.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = "objsize"
copyright = "Copyright (c) 2006-2023, Liran Funaro."
copyright = "Copyright (c) 2006-2025, Liran Funaro."
author = "Liran Funaro"
version = "0.7.0"
version = "0.7.1"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Install

.. code:: bash
pip install objsize==0.7.0
pip install objsize==0.7.1
Basic Usage
===========
Expand Down
2 changes: 1 addition & 1 deletion objsize/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
shared_object_or_function_filter,
)

__version__ = "0.7.0"
__version__ = "0.7.1"

default_settings = ObjSizeSettings()
"""
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "objsize"
version = "0.7.0"
version = "0.7.1"
description = "Traversal over Python's objects subtree and calculate the total size of the subtree in bytes (deep size)."
readme = "README.md"
authors = [{ name = "Liran Funaro", email = "liran.funaro@gmail.com" }]
Expand All @@ -20,7 +20,7 @@ classifiers = [
]
keywords = ["object-size", "recursive", "deep", "traversal", "object", "size", "debug", "deep-object-size"]
dependencies = []
requires-python = ">=3.7"
requires-python = ">=3.8"

[project.optional-dependencies]
dev = [
Expand All @@ -34,7 +34,7 @@ docs = [
Homepage = "https://github.com/liran-funaro/objsize"

[tool.bumpver]
current_version = "0.7.0"
current_version = "0.7.1"
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down

0 comments on commit 74ce440

Please sign in to comment.