Compare commits

...

2 Commits

Author SHA1 Message Date
Michael Davis a05c151bb6
Release 25.07.1 2025-07-18 10:31:37 -04:00
RoloEdits 3c230c9b4a
build: lower ubuntu version from `24.04` to `22.04`
(cherry picked from commit fd8aacc1a4)
2025-07-18 10:19:33 -04:00
5 changed files with 26 additions and 16 deletions

View File

@ -61,12 +61,15 @@ jobs:
build: [x86_64-linux, aarch64-linux, x86_64-macos, x86_64-windows] #, x86_64-win-gnu, win32-msvc build: [x86_64-linux, aarch64-linux, x86_64-macos, x86_64-windows] #, x86_64-win-gnu, win32-msvc
include: include:
- build: x86_64-linux - build: x86_64-linux
os: ubuntu-24.04 # WARN: When changing this to a newer version, make sure that the GLIBC isnt too new, as this can cause issues
# with portablity on older systems that dont follow ubuntus more rapid release cadence.
os: ubuntu-22.04
rust: stable rust: stable
target: x86_64-unknown-linux-gnu target: x86_64-unknown-linux-gnu
cross: false cross: false
- build: aarch64-linux - build: aarch64-linux
os: ubuntu-24.04-arm # Version should be kept in lockstep with the x86_64 version
os: ubuntu-22.04-arm
rust: stable rust: stable
target: aarch64-unknown-linux-gnu target: aarch64-unknown-linux-gnu
cross: false cross: false

View File

@ -20,6 +20,10 @@ Updated languages and queries:
Packaging: Packaging:
--> -->
# 25.07.1 (2025-07-18)
This is a patch release which lowers the GLIBC requirements of the release artifacts published to GitHub ([#13983](https://github.com/helix-editor/helix/pull/13983))
# 25.07 (2025-07-15) # 25.07 (2025-07-15)
As always, a big thank you to all of the contributors! This release saw changes from 195 contributors. As always, a big thank you to all of the contributors! This release saw changes from 195 contributors.

24
Cargo.lock generated
View File

@ -1397,7 +1397,7 @@ dependencies = [
[[package]] [[package]]
name = "helix-core" name = "helix-core"
version = "25.7.0" version = "25.7.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"arc-swap", "arc-swap",
@ -1435,7 +1435,7 @@ dependencies = [
[[package]] [[package]]
name = "helix-dap" name = "helix-dap"
version = "25.7.0" version = "25.7.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"fern", "fern",
@ -1454,7 +1454,7 @@ dependencies = [
[[package]] [[package]]
name = "helix-event" name = "helix-event"
version = "25.7.0" version = "25.7.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"foldhash", "foldhash",
@ -1468,7 +1468,7 @@ dependencies = [
[[package]] [[package]]
name = "helix-loader" name = "helix-loader"
version = "25.7.0" version = "25.7.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"cc", "cc",
@ -1485,7 +1485,7 @@ dependencies = [
[[package]] [[package]]
name = "helix-lsp" name = "helix-lsp"
version = "25.7.0" version = "25.7.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"arc-swap", "arc-swap",
@ -1518,11 +1518,11 @@ dependencies = [
[[package]] [[package]]
name = "helix-parsec" name = "helix-parsec"
version = "25.7.0" version = "25.7.1"
[[package]] [[package]]
name = "helix-stdx" name = "helix-stdx"
version = "25.7.0" version = "25.7.1"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"dunce", "dunce",
@ -1540,7 +1540,7 @@ dependencies = [
[[package]] [[package]]
name = "helix-term" name = "helix-term"
version = "25.7.0" version = "25.7.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"arc-swap", "arc-swap",
@ -1586,7 +1586,7 @@ dependencies = [
[[package]] [[package]]
name = "helix-tui" name = "helix-tui"
version = "25.7.0" version = "25.7.1"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"cassowary", "cassowary",
@ -1601,7 +1601,7 @@ dependencies = [
[[package]] [[package]]
name = "helix-vcs" name = "helix-vcs"
version = "25.7.0" version = "25.7.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"arc-swap", "arc-swap",
@ -1617,7 +1617,7 @@ dependencies = [
[[package]] [[package]]
name = "helix-view" name = "helix-view"
version = "25.7.0" version = "25.7.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"arc-swap", "arc-swap",
@ -3281,7 +3281,7 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
[[package]] [[package]]
name = "xtask" name = "xtask"
version = "25.7.0" version = "25.7.1"
dependencies = [ dependencies = [
"helix-core", "helix-core",
"helix-loader", "helix-loader",

View File

@ -52,7 +52,7 @@ futures-util = { version = "0.3", features = ["std", "async-await"], default-fea
tokio-stream = "0.1.17" tokio-stream = "0.1.17"
[workspace.package] [workspace.package]
version = "25.7.0" version = "25.7.1"
edition = "2021" edition = "2021"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"] authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
categories = ["editor"] categories = ["editor"]

View File

@ -47,6 +47,9 @@
<content_rating type="oars-1.1" /> <content_rating type="oars-1.1" />
<releases> <releases>
<release version="25.07.1" date="2025-07-18">
<url>https://github.com/helix-editor/helix/releases/tag/25.07.1</url>
</release>
<release version="25.07" date="2025-07-15"> <release version="25.07" date="2025-07-15">
<url>https://helix-editor.com/news/release-25-07-highlights/</url> <url>https://helix-editor.com/news/release-25-07-highlights/</url>
</release> </release>