Skip to content

Commit 4172b1f

Browse files
author
fri
committed
Added ARM64 build target
1 parent f1e0d62 commit 4172b1f

File tree

8 files changed

+30
-19
lines changed

8 files changed

+30
-19
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
# target: [x86_64-unknown-linux-musl, aarch64-unknown-linux-musl]
11-
target: [x86_64-unknown-linux-musl]
10+
target: [x86_64-unknown-linux-musl, aarch64-unknown-linux-musl]
1211
include:
1312
- target: x86_64-unknown-linux-musl
1413
platform: linux/amd64
14+
simple_target: Linux-x86_64
1515
runner: ubuntu-latest
16-
# - target: aarch64-unknown-linux-musl
17-
# platform: linux/arm64
18-
# runner: ubuntu-latest
16+
- target: aarch64-unknown-linux-musl
17+
platform: linux/arm64
18+
simple_target: Linux-arm64
19+
runner: ubuntu-24.04-arm
1920
runs-on: ${{ matrix.runner }}
2021
steps:
2122
- uses: actions/checkout@v4
@@ -43,10 +44,10 @@ jobs:
4344
cp README.md fcd/share/doc/fcd/
4445
cp CHANGELOG.md fcd/share/doc/fcd/
4546
cp LICENSE fcd/share/licenses/fcd/
46-
tar cvzf fcd-${{ matrix.target }}.tar.gz fcd/
47+
tar cvzf fcd-${{ matrix.simple_target }}.tar.gz fcd/
4748
- name: Upload
4849
uses: actions/upload-artifact@v4
4950
with:
50-
name: fcd-${{ matrix.target }}
51-
path: fcd-${{ matrix.target }}.tar.gz
51+
name: fcd-${{ matrix.simple_target }}
52+
path: fcd-${{ matrix.simple_target }}.tar.gz
5253
if-no-files-found: error

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
- name: Extract release notes
2121
id: extract-release-notes
2222
uses: ffurrer2/extract-release-notes@v2
23+
with:
24+
release_notes_file: RELEASE_NOTE.md
2325
- name: Download All Artifacts
2426
uses: actions/download-artifact@v4
2527
with:
@@ -30,5 +32,5 @@ jobs:
3032
run: |
3133
gh release create ${{ github.ref_name }} \
3234
--title ${{ github.ref_name }} \
33-
--notes '${{ steps.extract-release-notes.outputs.release_notes }}' \
35+
--notes-file RELEASE_NOTE.md \
3436
*.tar.gz

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [1.0.1] - 2025-01-17
9+
10+
### Added
11+
12+
- Added support for ARM64 architecture
13+
14+
### Changed
15+
16+
- CP/MV/RM operations can no longer be canceled by pressing ESC
917

1018
### Fixed
1119

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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fcd"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
authors = ["Franco Bugnano <[email protected]>"]
66
license = "GPL-3.0-or-later"

bumpversion.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /usr/bin/env fish
22

3-
set new_version 1.0.0
3+
set new_version 1.0.1
44
set new_date (date '+%Y-%m-%d')
55
set new_year (date '+%Y')
66

doc/fcd-view.1.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
:doctype: manpage
33
:author: Franco Bugnano
44
:man source: fcd-view
5-
:man version: 1.0.0
5+
:man version: 1.0.1
66
:man manual: fcd manual
7-
:revdate: 2024-09-13
7+
:revdate: 2025-01-17
88

99

1010
== NAME
@@ -94,6 +94,6 @@ fcd(1)
9494

9595

9696
== COPYING
97-
Copyright \(C) 2023-2024 Franco Bugnano. Free use of this software is
97+
Copyright \(C) 2023-2025 Franco Bugnano. Free use of this software is
9898
granted under the terms of the GNU General Public License (GPL).
9999

doc/fcd.1.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
:doctype: manpage
33
:author: Franco Bugnano
44
:man source: fcd
5-
:man version: 1.0.0
5+
:man version: 1.0.1
66
:man manual: fcd manual
7-
:revdate: 2024-09-13
7+
:revdate: 2025-01-17
88

99

1010
== NAME
@@ -174,6 +174,6 @@ fcd-view(1)
174174

175175

176176
== COPYING
177-
Copyright \(C) 2023-2024 Franco Bugnano. Free use of this software is
177+
Copyright \(C) 2023-2025 Franco Bugnano. Free use of this software is
178178
granted under the terms of the GNU General Public License (GPL).
179179

0 commit comments

Comments
 (0)