Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 52 additions & 0 deletions libs/cln-version-manager/.kacl.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
kacl:
file: CHANGELOG.md
allowed_header_titles:
- Changelog
- Change Log
allowed_version_sections:
- Added
- Changed
- Deprecated
- Removed
- Fixed
- Security
default_content:
- All notable changes to this project will be documented in this file.
- 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).
release:
add_unreleased: True
git:
commit: False
commit_message: "[skip ci] Releasing Changelog version {new_version}"
commit_additional_files: []
tag: False
tag_name: "v{new_version}"
tag_description: "Version v{new_version} released"
links:
auto_generate: False
compare_versions_template: '{host}/compare/{previous_version}...{version}'
unreleased_changes_template: '{host}/compare/{latest_version}...master'
initial_version_template: '{host}/tree/{version}'
extension:
post_release_version_prefix: null
issue_tracker:
jira:
host: null
username: null
password: null
issue_patterns: ["[A-Z]+-[0-9]+"]
comment_template: |
# 🚀 New version [v{new_version}]({link})

A new release has been created referencing this issue. Please check it out.

## 🚧 Changes in this version

{changes}

## 🧭 Reference

Code: [Source Code Management System]({link})
stash:
directory: .kacl_stash
always: False
11 changes: 11 additions & 0 deletions libs/cln-version-manager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

All notable changes to this project will be documented in this file.

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).

## Unreleased

### Fixed

- Updated the hashes for v24.02gl1 and v24.11gl1. We applied some server-side patches for these versions.
4 changes: 2 additions & 2 deletions libs/cln-version-manager/clnvm/cln_version_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class VersionDescriptor:
VersionDescriptor(
tag="v24.02gl1",
url="https://storage.googleapis.com/greenlight-artifacts/cln/lightningd-v24.02gl1.tar.bz2",
checksum="101b0cc02031b64efa792d6b3f82382ecb0940fa3e305c3e900aa804245877d6",
checksum="31fc7e79eddfa5c4083d8d516b3c95477e65b0d2c6b671fd12170819db3217be",
),
VersionDescriptor(
tag="v24.02",
Expand All @@ -82,7 +82,7 @@ class VersionDescriptor:
VersionDescriptor(
tag="v24.11gl1",
url="https://storage.googleapis.com/greenlight-artifacts/cln/lightningd-v24.11gl1.tar.bz2",
checksum="a1cf285ecc2be4367b8a1b4962243ba62faa7d0d4b2a6fb0da9cb21b49a492ac",
checksum="06818569d3a68d578cf390d01a6d09a5c969b7c6fdef9291dfe6fb707bb02fcc",
),
VersionDescriptor(
tag="v25.05gl1",
Expand Down
3 changes: 2 additions & 1 deletion libs/cln-version-manager/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ build-backend = "hatchling.build"
dev = [
"mypy>=1.14.1",
"pytest>=7.4.4",
"python-kacl>=0.6.7",
"types-requests>=2.31.0.6",
]

Expand All @@ -35,4 +36,4 @@ include = [
]

[project.scripts]
hello = "clnvm.cli:run"
hello = "clnvm.cli:run"
Loading