Skip to content

Commit

Permalink
initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
classabbyamp committed Aug 4, 2024
1 parent 7d69e2d commit 842b6c7
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog for netauth-python
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [Unreleased]


## [0.1.0] - 2024-08-04
### Added
- Generated code from protobuf definitions.
- Types for interacting with NetAuth objects.
- Objects and methods for interacting with NetAuth servers over gRPC.
- API documentation.


[Unreleased]: https://github.com/netauth/netauth-python/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/netauth/netauth-python/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion netauth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"error",
]

__version__ = "0.0.1"
__version__ = "0.1.0"


class NetAuth:
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ test = [
"pytest",
]
publish = [
"build",
"twine",
]

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

[tool.setuptools]
packages = ["netauth"]
packages = ["netauth", "netauth._pb", "netauth._pb.v2"]

[tool.setuptools.dynamic]
version = {attr = "netauth.__version__"}
Expand Down

0 comments on commit 842b6c7

Please sign in to comment.