Skip to content

Commit

Permalink
fix: Bump version of libpact_ffi to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyJones committed Sep 21, 2021
1 parent 3bb76a8 commit 490249c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ffi/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { initialiseFfi, libName } from './internals';
import { FfiBinding } from './internals/types';

const PACT_FFI_VERSION = '0.0.1';
const PACT_FFI_VERSION = '0.0.2';

// We have to declare this twice because typescript can't figure it out
// There's a workaround here we could employ:
Expand All @@ -20,5 +20,5 @@ const description: FfiVerifierType = {
pactffi_verify: ['int', ['string']],
};

export const getVerifierLib = (): FfiBinding<FfiVerifierType> =>
export const getFfiLib = (): FfiBinding<FfiVerifierType> =>
initialiseFfi(libName('pact_ffi', `v${PACT_FFI_VERSION}`), description);

0 comments on commit 490249c

Please sign in to comment.