Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
johnschug committed Aug 7, 2021
1 parent 00d3a70 commit 5a2e5ef
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ jobs:
docker-windows:
name: Test Suite (windows, docker)
runs-on: windows-latest
continue-on-error: true
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[package]
name = "gpgme"
version = "0.9.2"
version = "0.10.0"
edition = "2018"
authors = ["John Schug <[email protected]>"]
license = "LGPL-2.1"
readme = "README.md"
repository = "https://github.com/gpg-rs/gpgme"
Expand Down Expand Up @@ -31,7 +30,7 @@ static_assertions = "1.1"
[dependencies.ffi]
package = "gpgme-sys"
path = "gpgme-sys"
version = "0.9.1"
version = "0.10.0"

[[bin]]
name = "pinentry"
Expand Down
19 changes: 11 additions & 8 deletions docker/Dockerfile.static
Original file line number Diff line number Diff line change
Expand Up @@ -10,30 +10,33 @@ ENV TARGET "x86_64-unknown-linux-musl"
# environment variable.
# ARG GETTEXT_VER=0.21
# WORKDIR /usr/src
# RUN curl -sL "https://ftp.gnu.org/gnu/gettext/gettext-${GETTEXT_VER}.tar.xz" | tar -xj
# WORKDIR "gettext-$GETTEXT_VER"
# ADD https://ftp.gnu.org/gnu/gettext/gettext-${GETTEXT_VER}.tar.xz ./
# RUN tar -xjf gettext-${GETTEXT_VER}.tar.xz
# WORKDIR gettext-$GETTEXT_VER
# RUN ./configure --host "$TARGET" --prefix="$PREFIX" --with-pic --enable-fast-install --disable-dependency-tracking --without-emacs --disable-java --disable-csharp --disable-c++
# RUN make -j$(nproc) install

ARG LIBGPG_ERROR_VER=1.42
WORKDIR /usr/src
RUN curl -sSL "https://www.gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-${LIBGPG_ERROR_VER}.tar.bz2" | tar -xj
ADD https://www.gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-${LIBGPG_ERROR_VER}.tar.bz2 ./
RUN tar -xjf libgpg-error-${LIBGPG_ERROR_VER}.tar.bz2
WORKDIR libgpg-error-$LIBGPG_ERROR_VER
RUN ./configure --host "$TARGET" --prefix="$PREFIX" --with-pic --enable-fast-install --disable-dependency-tracking --enable-static --disable-shared --disable-nls --disable-doc --disable-languages --disable-tests
RUN make -j$(nproc) install
RUN true

ARG LIBASSUAN_VER=2.5.5
WORKDIR /usr/src
RUN curl -sSL "https://www.gnupg.org/ftp/gcrypt/libassuan/libassuan-${LIBASSUAN_VER}.tar.bz2" | tar -xj
WORKDIR "libassuan-$LIBASSUAN_VER"
ADD https://www.gnupg.org/ftp/gcrypt/libassuan/libassuan-${LIBASSUAN_VER}.tar.bz2 ./
RUN tar -xjf libassuan-${LIBASSUAN_VER}.tar.bz2
WORKDIR libassuan-$LIBASSUAN_VER
RUN ./configure --host "$TARGET" --prefix="$PREFIX" --with-pic --enable-fast-install --disable-dependency-tracking --enable-static --disable-shared --disable-doc --with-gpg-error-prefix="$PREFIX"
RUN make -j$(nproc) install

ARG GPGME_VER=1.16.0
WORKDIR /usr/src
RUN curl -sSL "https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-${GPGME_VER}.tar.bz2" | tar -xj
WORKDIR "gpgme-$GPGME_VER"
ADD https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-${GPGME_VER}.tar.bz2 ./
RUN tar -xjf gpgme-${GPGME_VER}.tar.bz2
WORKDIR gpgme-$GPGME_VER
RUN ./configure --host "$TARGET" --prefix="$PREFIX" --with-pic --enable-fast-install --disable-dependency-tracking --enable-static --disable-shared --disable-languages --disable-gpg-test --with-gpg-error-prefix="$PREFIX" --with-libassuan-prefix="$PREFIX"
RUN make -j$(nproc) install

Expand Down
4 changes: 1 addition & 3 deletions gpgme-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[package]
name = "gpgme-sys"
version = "0.9.1"
version = "0.10.0"
edition = "2018"
authors = ["John Schug <[email protected]>"]
license = "LGPL-2.1"
repository = "https://github.com/gpg-rs/gpgme/gpgme-sys"
documentation = "https://docs.rs/gpgme-sys"
Expand All @@ -13,7 +12,6 @@ links = "gpgme"
build = "build.rs"

[badges]
travis-ci = { repository = "gpg-rs/gpgme" }
maintenance = { status = "experimental" }

[lib]
Expand Down

0 comments on commit 5a2e5ef

Please sign in to comment.