Skip to content

Commit

Permalink
v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
isakruas committed Apr 5, 2024
1 parent 71714bf commit 957e411
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.0.1] - 2024-04-05

### Added
- Added names of new authors to the project.

### Changed
- Updated version to v0.0.1, making it the official stable version.

## [0.0.1.a0] - 2023-12-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MIT License

Copyright (c) 2022-2023 Isak Ruas, Celimar Paiva.
Copyright (c) 2022-2024 Isak Ruas, Celimar Paiva, Fernando Silva.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repo_name: isakruas/ecutils
repo_url: https://github.com/isakruas/ecutils

# Copyright
copyright: Copyright &copy; 2022-2023 <a href="https://lattes.cnpq.br/4397351570177069" target="_blank">Ruas, Isak Paulo de Andrade</a>; <a href="https://lattes.cnpq.br/0567547569121826" target="_blank">Paiva, Celimar Reijane Alves Damasceno</a>.
copyright: Copyright &copy; 2022-2024 <a href="https://lattes.cnpq.br/4397351570177069" target="_blank">Ruas, Isak Paulo de Andrade</a>; <a href="https://lattes.cnpq.br/0567547569121826" target="_blank">Paiva, Celimar Reijane Alves Damasceno</a>; <a href="https://lattes.cnpq.br/7059909954060830" target="_blank">Silva, Fernando Marcos Souza</a>.

# Configuration
theme:
Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,22 @@ build-backend = "hatchling.build"
name = "ecutils"
description = "Elliptic Curve Utils"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE.md", content-type = "text/markdown"}
license = {text = "MIT License"}
keywords = ["ecutils", "ec", "ecdh", "eck", "ecdsa", "ecmo"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
authors = [
{name = "Isak Paulo de Andrade Ruas", email = "[email protected]"},
{name = "Celimar Reijane Alves Damasceno Paiva", email = "[email protected]"},
{name = "Fernando Marcos Souza Silva", email = "[email protected]"},
]
maintainers = [
{name = "Isak Paulo de Andrade Ruas", email = "[email protected]"}
Expand Down
2 changes: 1 addition & 1 deletion src/ecutils/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.1.a0"
__version__ = "0.0.1"

0 comments on commit 957e411

Please sign in to comment.