Skip to content

Commit 8775a68

Browse files
committed
Fix publish of submodule.
1 parent 69eea91 commit 8775a68

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

.github/workflows/main.yml

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
rust: stable
2929
steps:
3030
- uses: actions/checkout@master
31+
with:
32+
submodules: true
3133
- name: Install Rust (rustup)
3234
run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
3335
shell: bash

.github/workflows/publish.yml

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@master
27+
with:
28+
submodules: true
2729
- name: Publish
2830
env:
2931
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

libgit2-sys/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.16.1+1.7.1 - 2023-08-28
4+
[0.16.0...0.16.1](https://github.com/rust-lang/git2-rs/compare/libgit2-sys-0.16.0+1.7.1...libgit2-sys-0.16.1+1.7.1)
5+
6+
### Fixed
7+
8+
- Fixed publish of 0.16.0 missing the libgit2 submodule.
9+
310
## 0.16.0+1.7.1 - 2023-08-28
411
[0.15.2...0.16.0](https://github.com/rust-lang/git2-rs/compare/libgit2-sys-0.15.2+1.6.4...libgit2-sys-0.16.0+1.7.1)
512

libgit2-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libgit2-sys"
3-
version = "0.16.0+1.7.1"
3+
version = "0.16.1+1.7.1"
44
authors = ["Josh Triplett <[email protected]>", "Alex Crichton <[email protected]>"]
55
links = "git2"
66
build = "build.rs"

0 commit comments

Comments
 (0)