Changeset - 63e7de907eb6
[Not reviewed]
v0.3.0
0 2 0
Lance Edgar (lance) - 2 months ago 2024-07-09 15:59:18
lance@edbob.org
bump: version 0.2.2 → 0.3.0
2 files changed with 7 insertions and 1 deletions:
0 comments (0 inline, 0 general)
CHANGELOG.md
Show inline comments
 

	
 
# Changelog
 
All notable changes to sqlalchemy-pervasive will be documented in this file.
 

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

	
 
## v0.3.0 (2024-07-09)
 

	
 
### Feat
 

	
 
- switch from setup.cfg to pyproject.toml + hatchling
 

	
 
## 0.2.2 (2023-06-01)
 

	
 
* Replace ``setup.py`` contents with ``setup.cfg``.
 

	
 

	
 
## 0.2.1 (2021-03-03)
 

	
 
* Update author / homepage metadata.
 

	
 

	
 
## 0.2.0 (2021-03-03)
 

	
 
* Officially declare "Python 3 only".
 

	
 

	
 
## 0.1.3 (2018-02-24)
 

	
 
* Replace ``execfile()`` usage per python 3.
 

	
 

	
 
## 0.1.2
 

	
 
* Misc. housekeeping.  Added manifest, transferred copyright, etc.
 

	
 

	
 
## 0.1.1
 

	
 
* Fixed boolean conditions in rendered SQL.
 

	
 

	
 
## 0.1.0
 

	
 
* Initial version.
pyproject.toml
Show inline comments
 

	
 
[build-system]
 
requires = ["hatchling"]
 
build-backend = "hatchling.build"
 

	
 

	
 
[project]
 
name = "sqlalchemy-pervasive"
 
version = "0.2.2"
 
version = "0.3.0"
 
description = "SQLAlchemy Dialect for Pervasive PSQL"
 
readme = "README.rst"
 
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
 
license = {text = "GNU GPL v3+"}
 
classifiers = [
 
        "Development Status :: 5 - Production/Stable",
 
        "Intended Audience :: Developers",
 
        "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
 
        "Natural Language :: English",
 
        "Operating System :: OS Independent",
 
        "Programming Language :: Python",
 
        "Programming Language :: Python :: 3",
 
        "Topic :: Software Development :: Libraries :: Python Modules",
 
]
 
dependencies = [
 
        "pyodbc",
 
        "SQLAlchemy",
 
]
 

	
 

	
 
[project.entry-points."sqlalchemy.dialects"]
 
pervasive = "sqlalchemy_pervasive.pyodbc:PervasiveDialect_pyodbc"
 

	
 

	
 
[project.urls]
 
Homepage = "https://kallithea.rattailproject.org/rattail-project-contrib/sqlalchemy-pervasive"
 
Repository = "https://kallithea.rattailproject.org/rattail-project-contrib/sqlalchemy-pervasive"
 
Changelog = "https://kallithea.rattailproject.org/rattail-project-contrib/sqlalchemy-pervasive/files/master/CHANGELOG.md"
 

	
 

	
 
[tool.commitizen]
 
version_provider = "pep621"
 
tag_format = "v$version"
 
update_changelog_on_bump = true
 

	
 

	
 
[tool.nosetests]
 
nocapture = 1
 
cover-package = "sqlalchemy_pervasive"
 
cover-erase = 1
 
cover-inclusive = 1
 
cover-html = 1
 
cover-html-dir = "htmlcov"
0 comments (0 inline, 0 general)