Skip to content
This repository has been archived by the owner on Sep 27, 2022. It is now read-only.

Commit

Permalink
feat: both openssl 3 and openssl 1 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
frenkel committed Jul 29, 2022
1 parent 6a94325 commit 9f650d6
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 12 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- run: sudo apt-get install -y libssl-dev libgtk-3-dev
- run: cargo install cargo-deb cargo-rpm
Expand All @@ -21,7 +21,6 @@ jobs:

- run: cargo deb
- run: cargo rpm build
- run: find target/release/rpmbuild

- run: mv target/debian/timer-for-harvest_*_amd64.deb .
- run: mv target/release/rpmbuild/RPMS/x86_64/timer-for-harvest*.rpm .
Expand All @@ -33,4 +32,4 @@ jobs:
path: |
timer-for-harvest_*_amd64.deb
timer-for-harvest*.rpm
SHA256SUM
SHA256SUM
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env:
CARGO_TERM_COLOR: always
jobs:
cargo-test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- run: sudo apt-get install -y libssl-dev libgtk-3-dev

Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [UNRELEASED] - YYYY-MM-DD

## [0.3.10] - 2022-07-29

- Build against OpenSSL 3 for Ubuntu 22.04.

## [0.3.9] - 2022-06-11

- Updates to dependencies. These dependencies needed to be updated because of various security issues.
- Clear selected task when switching project. Previously an invalid entry was still selected, which stopped the save button from working.

## [0.3.8] - 2021-09-21
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "timer-for-harvest"
description = "Timer for Harvest"
homepage = "https://github.com/frenkel/timer-for-harvest"
version = "0.3.9"
version = "0.3.10"
authors = ["Frank Groeneveld <[email protected]>"]
edition = "2018"
readme = "README.md"
Expand Down Expand Up @@ -34,7 +34,7 @@ chrono = "0.4.9"
glib-sys = "0.9.1"
hyper = "0.14.12"
dirs = "2.0.2"
resolv = "0.2.0"
resolv = "0.3.0"
version-compare = "0.0.10"
gtk = { version = "0.7.0", features = ["v3_22"] }
gdk = { version = "0.11.0", features = ["v3_22"] }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ and the various BSD's.
On the Timer for Harvest github page, click on the
[releases link](https://github.com/frenkel/timer-for-harvest/releases). The
newest release is listed at the top of the page. It contains pre-build
binaries for Ubuntu 20.04 and Fedora 32, as well as other distributions.
binaries for Ubuntu 22.04 and Fedora 36, as well as other distributions.
You will be notified of new releases by a message in the main window.

## Usage
Expand Down

0 comments on commit 9f650d6

Please sign in to comment.