Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for next release #2296

Merged
merged 1 commit into from
Dec 25, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ task:
cxx_package: g++-5
cc: gcc-5
cxx: g++-5
rust_version: 1.62.0
rust_version: 1.64.0
- name: MSRV, GCC 12 (Ubuntu 22.04)
container:
greedy: true
Expand All @@ -135,7 +135,7 @@ task:
cxx_package: g++-12
cc: gcc-12
cxx: g++-12
rust_version: 1.62.0
rust_version: 1.64.0

- name: GCC 12, more warnings and checks (Ubuntu 22.04)
container:
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changes for Newsboat

## Unreleased - expected 2023-03-25

Lists below only mention user-visible changes, but the full list of contributors
for this release also includes: TK

### Added

### Changed

- Bumped minimum supported Rust version to 1.64.0

### Deprecated

### Removed

### Fixed

### Security



## 2.30 - 2022-12-25

Lists below only mention user-visible changes, but the full list of contributors
Expand Down
99 changes: 55 additions & 44 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Newsboat can be compiled.
- GNU Make 4.0 or newer
- GCC 5.0 or newer, or Clang 3.6 or newer
- Stable [Rust](https://www.rust-lang.org/en-US/) and Cargo (Rust's package
manager) (1.62.0 or newer; might work with older versions, but we don't
manager) (1.64.0 or newer; might work with older versions, but we don't
check that)
- [STFL (version 0.21 or newer)](https://github.com/newsboat/stfl) (the link
points to our own fork because [the upstream](http://www.clifford.at/stfl/)
Expand Down
2 changes: 1 addition & 1 deletion doc/newsboat.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Debian and derivatives, headers are in `-dev` packages, e.g. `libsqlite3-dev`.)
- GNU Make 4.0 or newer
- GCC 5.0 or newer, or Clang 3.6 or newer
- Stable https://www.rust-lang.org/en-US/[Rust] and Cargo (Rust's package
manager) (1.62.0 or newer; might work with older versions, but we don't check
manager) (1.64.0 or newer; might work with older versions, but we don't check
that)
- https://github.com/newsboat/stfl[STFL (version 0.21 or newer)] (the link
points to our own fork because http://www.clifford.at/stfl/[the upstream] is
Expand Down
2 changes: 1 addition & 1 deletion docker/code-formatting-tools.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# newsboat-code-formatting-tools \
# make fmt

FROM rust:1.62.0-alpine
FROM rust:1.64.0-alpine
WORKDIR /workspace
RUN apk add --no-cache astyle==3.1-r2 git make
RUN rustup component add rustfmt