Skip to content

Commit 02efec9

Browse files
authored
Merge branch 'main' into 202510-ci-publish
2 parents 7c6e74e + 23e52af commit 02efec9

File tree

5 files changed

+71
-2
lines changed

5 files changed

+71
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/cln-version-manager/.kacl.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
kacl:
2+
file: CHANGELOG.md
3+
allowed_header_titles:
4+
- Changelog
5+
- Change Log
6+
allowed_version_sections:
7+
- Added
8+
- Changed
9+
- Deprecated
10+
- Removed
11+
- Fixed
12+
- Security
13+
default_content:
14+
- All notable changes to this project will be documented in this file.
15+
- 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).
16+
release:
17+
add_unreleased: True
18+
git:
19+
commit: False
20+
commit_message: "[skip ci] Releasing Changelog version {new_version}"
21+
commit_additional_files: []
22+
tag: False
23+
tag_name: "v{new_version}"
24+
tag_description: "Version v{new_version} released"
25+
links:
26+
auto_generate: False
27+
compare_versions_template: '{host}/compare/{previous_version}...{version}'
28+
unreleased_changes_template: '{host}/compare/{latest_version}...master'
29+
initial_version_template: '{host}/tree/{version}'
30+
extension:
31+
post_release_version_prefix: null
32+
issue_tracker:
33+
jira:
34+
host: null
35+
username: null
36+
password: null
37+
issue_patterns: ["[A-Z]+-[0-9]+"]
38+
comment_template: |
39+
# 🚀 New version [v{new_version}]({link})
40+
41+
A new release has been created referencing this issue. Please check it out.
42+
43+
## 🚧 Changes in this version
44+
45+
{changes}
46+
47+
## 🧭 Reference
48+
49+
Code: [Source Code Management System]({link})
50+
stash:
51+
directory: .kacl_stash
52+
always: False

libs/cln-version-manager/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
99
### Changed
1010

1111
- Adjusted the expected hashes for artifacts, after patching them
12+
13+
### Fixed
14+
15+
- Updated the hashes for v24.02gl1 and v24.11gl1. We applied some server-side patches for these versions.

libs/cln-version-manager/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ build-backend = "hatchling.build"
2626
dev = [
2727
"mypy>=1.14.1",
2828
"pytest>=7.4.4",
29+
"python-kacl>=0.6.7",
2930
"types-requests>=2.31.0.6",
3031
]
3132

@@ -35,4 +36,4 @@ include = [
3536
]
3637

3738
[project.scripts]
38-
hello = "clnvm.cli:run"
39+
hello = "clnvm.cli:run"

libs/gl-testserver/pyproject.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,15 @@ gltestserver = 'gltestserver.__main__:cli'
1515

1616
[tool.uv.sources]
1717
gl-testing = { workspace = true }
18+
19+
[tool.uv]
20+
package = true
21+
22+
[build-system]
23+
requires = ["hatchling"]
24+
build-backend = "hatchling.build"
25+
26+
[tool.hatch.build]
27+
include = [
28+
"gltestserver",
29+
]

0 commit comments

Comments
 (0)