Skip to content

Commit

Permalink
Merge pull request #373 from kbknapp/v0.14-release
Browse files Browse the repository at this point in the history
V0.14 release
  • Loading branch information
kbknapp committed Nov 2, 2023
2 parents 94b2bab + 6b0982b commit d60b274
Show file tree
Hide file tree
Showing 4 changed files with 425 additions and 444 deletions.
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

0 comments on commit d60b274

Please sign in to comment.