Skip to content

Commit 842b6c7

Browse files
committed
initial release
1 parent 7d69e2d commit 842b6c7

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog for netauth-python
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
8+
## [Unreleased]
9+
10+
11+
## [0.1.0] - 2024-08-04
12+
### Added
13+
- Generated code from protobuf definitions.
14+
- Types for interacting with NetAuth objects.
15+
- Objects and methods for interacting with NetAuth servers over gRPC.
16+
- API documentation.
17+
18+
19+
[Unreleased]: https://github.com/netauth/netauth-python/compare/v0.1.0...HEAD
20+
[0.1.0]: https://github.com/netauth/netauth-python/releases/tag/v0.1.0

netauth/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"error",
3434
]
3535

36-
__version__ = "0.0.1"
36+
__version__ = "0.1.0"
3737

3838

3939
class NetAuth:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ test = [
4141
"pytest",
4242
]
4343
publish = [
44+
"build",
4445
"twine",
4546
]
4647

@@ -51,7 +52,7 @@ Repository = "https://github.com/netauth/netauth-python"
5152
Changelog = "https://github.com/netauth/netauth-python/blob/master/CHANGELOG.md"
5253

5354
[tool.setuptools]
54-
packages = ["netauth"]
55+
packages = ["netauth", "netauth._pb", "netauth._pb.v2"]
5556

5657
[tool.setuptools.dynamic]
5758
version = {attr = "netauth.__version__"}

0 commit comments

Comments
 (0)