Skip to content

Commit bde9775

Browse files
additions
1 parent a72bf57 commit bde9775

4 files changed

Lines changed: 6 additions & 14 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.0
2+
current_version = 0.1.1
33
commit = False
44
tag = False
55

README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,7 @@ A Python package for parsing and analyzing volleyball scouting data from DataVol
44

55
Currently rebuilding [pydatavolley](https://github.com/openvolley/pydatavolley) with modern Python tooling ([Astral ecosystem](https://docs.astral.sh/)) for improved experience: UV for package management, Ruff for linting/formatting and [Ty](https://github.com/astral-sh/ty) for type checking.
66

7-
## Versioning
8-
9-
This project uses automatic semantic versioning based on commit messages:
10-
11-
- **Patch** (0.0.X): Bug fixes, documentation updates, minor changes
12-
- **Minor** (0.X.0): New features (commits starting with `feat:` or `feature:`)
13-
- **Major** (X.0.0): Breaking changes (commits containing `BREAKING CHANGE` or `!:`)
14-
15-
Versions are automatically bumped and released when pushing to the main branch.
7+
# Running
168

179
If you want to clone, here's how to set up the development environment using UV:
1810

datavolley/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
)
2929

3030
# Version info
31-
__version__ = "0.1.0"
32-
__author__ = "Your Name"
31+
__version__ = "0.1.1"
32+
__author__ = "Tyler Widdison"
3333

3434
# Explicitly define what's available when someone imports the package
3535
__all__ = [

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[project]
22
name = "py-datavolley"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = [{name = "Tyler Widdison"}]
55
description = "Cousin to the R opnevolley packge"
66
readme = "README.md"
77
requires-python = ">=3.13"
88
dependencies = [
99
"requests>=2.32.5",
10-
"ruff>=0.12.12",
10+
"ruff>=0.13.1",
1111
"ty>=0.0.1a20",
1212
]
1313

0 commit comments

Comments
 (0)