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

V0.14 release #373

Merged
merged 4 commits into from
Nov 2, 2023
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
10 changes: 7 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
rust:
- nightly
- 1.67.0 # MSRV
- 1.70.0 # MSRV
- stable

steps:
Expand Down Expand Up @@ -54,9 +54,13 @@ jobs:
run: just lint

- name: MSRV Check
if: ${{ matrix.rust == '1.67.0' }}
if: ${{ matrix.rust == '1.70.0' }}
# Note we have to actually _run_ the application to check the MSRV.
# The standard `cargo check` may successfully build on an earlier
# Rust, but cargo-oudated by not be able to successfully run in such
# environments.
run: cargo run -- outdated
#
# Note2: we exclude git2-curl because it requires libgit2-sys which
# must match the same version that our internal cargo transitively
# requires
run: cargo run -- outdated -x git2-curl
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
<a name="v0.14.0"></a>
### v0.14.0 (2023-11-01)

#### Changes

* MSRV is now as 1.70.0

#### Fixes

* `[patch]` table is now included (Thanks to [@rmja](https://github.com/rmja)) (Fixes [#275](https://github.com/kbknapp/cargo-outdated/issues/275))

#### Maintenance

* `cargo` was updated to v0.72 (Thanks to [@cuviper](https://github.com/cuviper))
* Use of `serde` vs `serde_derive` was cleaned up (Thanks to [@tottoto](https://github.com/tottoto))
* bump deps
* Typo cleanups (Thanks to [@Treeway7](https://github.com/Treeway7))

<a name="v0.13.1"></a>
### v0.13.1 (2023-06-19)

Expand Down
Loading
Loading