Skip to content

Commit 6841bf0

Browse files
committed
clnvm: Fix the hashes for v24.02gl1 and v24.11gl, and add a CHANGELOG
1 parent 1da40e6 commit 6841bf0

File tree

5 files changed

+68
-4
lines changed

5 files changed

+68
-4
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
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
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).
6+
7+
## Unreleased
8+
9+
### Fixed
10+
11+
- Updated the hashes for v24.02gl1 and v24.11gl1. We applied some server-side patches for these versions.

libs/cln-version-manager/clnvm/cln_version_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class VersionDescriptor:
7272
VersionDescriptor(
7373
tag="v24.02gl1",
7474
url="https://storage.googleapis.com/greenlight-artifacts/cln/lightningd-v24.02gl1.tar.bz2",
75-
checksum="101b0cc02031b64efa792d6b3f82382ecb0940fa3e305c3e900aa804245877d6",
75+
checksum="31fc7e79eddfa5c4083d8d516b3c95477e65b0d2c6b671fd12170819db3217be",
7676
),
7777
VersionDescriptor(
7878
tag="v24.02",
@@ -82,7 +82,7 @@ class VersionDescriptor:
8282
VersionDescriptor(
8383
tag="v24.11gl1",
8484
url="https://storage.googleapis.com/greenlight-artifacts/cln/lightningd-v24.11gl1.tar.bz2",
85-
checksum="a1cf285ecc2be4367b8a1b4962243ba62faa7d0d4b2a6fb0da9cb21b49a492ac",
85+
checksum="06818569d3a68d578cf390d01a6d09a5c969b7c6fdef9291dfe6fb707bb02fcc",
8686
),
8787
VersionDescriptor(
8888
tag="v25.05gl1",

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"

0 commit comments

Comments
 (0)