Compare commits
3 commits
59e61357be
...
87d84f005a
Author | SHA1 | Date | |
---|---|---|---|
![]() |
87d84f005a | ||
![]() |
86abdea9d7 | ||
![]() |
8946121e8a |
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -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/)
|
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).
|
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)
|
## v0.2.3 (2024-07-01)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rattail-demo"
|
name = "rattail-demo"
|
||||||
version = "0.2.3"
|
version = "0.2.4"
|
||||||
description = "Rattail Software Demo"
|
description = "Rattail Software Demo"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
||||||
|
@ -51,8 +51,8 @@ rattail-demo = "rattail_demo.config:DemoConfigExtension"
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
Homepage = "https://demo.rattailproject.org"
|
Homepage = "https://demo.rattailproject.org"
|
||||||
Repository = "https://kallithea.rattailproject.org/rattail-project/rattail-demo"
|
Repository = "https://forgejo.wuttaproject.org/rattail/rattail-demo"
|
||||||
Changelog = "https://kallithea.rattailproject.org/rattail-project/rattail-demo/files/master/CHANGELOG.md"
|
Changelog = "https://forgejo.wuttaproject.org/rattail/rattail-demo/src/branch/master/CHANGELOG.md"
|
||||||
|
|
||||||
|
|
||||||
[tool.commitizen]
|
[tool.commitizen]
|
||||||
|
|
|
@ -62,7 +62,7 @@ class DemoMenuHandler(base.TailboneMenuHandler):
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'title': "Source Code",
|
'title': "Source Code",
|
||||||
'url': 'https://kallithea.rattailproject.org/rattail-project/rattail-demo',
|
'url': 'https://forgejo.wuttaproject.org/rattail/rattail-demo',
|
||||||
'target': '_blank',
|
'target': '_blank',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -15,8 +15,8 @@ class UpgradeView(base.UpgradeView):
|
||||||
|
|
||||||
projects.update({
|
projects.update({
|
||||||
'rattail_demo': {
|
'rattail_demo': {
|
||||||
'commit_url': 'https://kallithea.rattailproject.org/rattail-project/rattail-demo/changelog/{new_version}/?size=10',
|
'commit_url': 'https://forgejo.wuttaproject.org/rattail/rattail-demo/compare/{{old_version}}...{{new_version}}',
|
||||||
'release_url': 'https://kallithea.rattailproject.org/rattail-project/rattail-demo/files/{new_version}/CHANGES.rst',
|
'release_url': 'https://forgejo.wuttaproject.org/rattail/rattail-demo/src/tag/v{{new_version}}/CHANGELOG.md',
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
23
tasks.py
Normal file
23
tasks.py
Normal 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/*')
|
Loading…
Reference in a new issue