Compare commits

...

3 commits

Author SHA1 Message Date
Lance Edgar 87d84f005a build: add release task 2024-11-24 10:35:20 -06:00
Lance Edgar 86abdea9d7 bump: version 0.2.3 → 0.2.4 2024-11-24 10:33:08 -06:00
Lance Edgar 8946121e8a fix: update project links, kallithea -> forgejo 2024-09-14 13:19:35 -05:00
5 changed files with 40 additions and 6 deletions

View file

@ -5,6 +5,17 @@ All notable changes to rattail 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.2.4 (2024-11-24)
### Fix
- update project links, kallithea -> forgejo
- avoid deprecated base class for config extension
- just use upstream `main()` for webapi
- update menu config per wuttaweb
- update config for default app model
- remove unused alembic script
## v0.2.3 (2024-07-01)
### Fix

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project]
name = "rattail-demo"
version = "0.2.3"
version = "0.2.4"
description = "Rattail Software Demo"
readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
@ -51,8 +51,8 @@ rattail-demo = "rattail_demo.config:DemoConfigExtension"
[project.urls]
Homepage = "https://demo.rattailproject.org"
Repository = "https://kallithea.rattailproject.org/rattail-project/rattail-demo"
Changelog = "https://kallithea.rattailproject.org/rattail-project/rattail-demo/files/master/CHANGELOG.md"
Repository = "https://forgejo.wuttaproject.org/rattail/rattail-demo"
Changelog = "https://forgejo.wuttaproject.org/rattail/rattail-demo/src/branch/master/CHANGELOG.md"
[tool.commitizen]

View file

@ -62,7 +62,7 @@ class DemoMenuHandler(base.TailboneMenuHandler):
},
{
'title': "Source Code",
'url': 'https://kallithea.rattailproject.org/rattail-project/rattail-demo',
'url': 'https://forgejo.wuttaproject.org/rattail/rattail-demo',
'target': '_blank',
},
{

View file

@ -15,8 +15,8 @@ class UpgradeView(base.UpgradeView):
projects.update({
'rattail_demo': {
'commit_url': 'https://kallithea.rattailproject.org/rattail-project/rattail-demo/changelog/{new_version}/?size=10',
'release_url': 'https://kallithea.rattailproject.org/rattail-project/rattail-demo/files/{new_version}/CHANGES.rst',
'commit_url': 'https://forgejo.wuttaproject.org/rattail/rattail-demo/compare/{{old_version}}...{{new_version}}',
'release_url': 'https://forgejo.wuttaproject.org/rattail/rattail-demo/src/tag/v{{new_version}}/CHANGELOG.md',
},
})

23
tasks.py Normal file
View file

@ -0,0 +1,23 @@
# -*- coding: utf-8; -*-
"""
Tasks for rattail-demo
"""
import os
import shutil
from invoke import task
@task
def release(c):
"""
Release a new version of 'rattail-demo'
"""
if os.path.exists('dist'):
shutil.rmtree('dist')
if os.path.exists('rattail_demo.egg-info'):
shutil.rmtree('rattail_demo.egg-info')
c.run('python -m build --sdist')
c.run('twine upload dist/*')