Skip to content

Commit

Permalink
Bump version to 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Hopding committed Jun 26, 2020
1 parent 1aa8f09 commit 9862898
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/rn/src/tests/assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const writePdf = async (pdfBytes, chunkSize = 100000): Promise<string> =>
export const fetchAsset = async (path) => {
const res = await RNFetchBlob.config({ fileCache: false }).fetch(
'GET',
`http://localhost:8080/assets/${path}`,
`http://localhost:8080/assets/${encodeURI(path)}`,
{ 'Cache-Control': 'no-store' },
);
return res.base64();
Expand Down
2 changes: 1 addition & 1 deletion apps/rn/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4891,7 +4891,7 @@ path-type@^3.0.0:
pify "^3.0.0"

pdf-lib@./../..:
version "1.8.0"
version "1.9.0"
dependencies:
"@pdf-lib/standard-fonts" "^0.0.4"
"@pdf-lib/upng" "^1.0.1"
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pdf-lib",
"version": "1.8.0",
"version": "1.9.0",
"description": "Create and modify PDF files with JavaScript",
"author": "Andrew Dillon <[email protected]>",
"contributors": [
Expand All @@ -21,7 +21,8 @@
"Tim Kräuter (https://github.com/timKraeuter)",
"Richard Bateman (https://github.com/taxilian)",
"Sebastian Martinez (https://github.com/sebastinez)",
"soadzoor (https://github.com/soadzoor)"
"soadzoor (https://github.com/soadzoor)",
"Slobodan Babic (https://github.com/bockoblur)"
],
"scripts": {
"release:latest": "yarn publish --tag latest && yarn pack && yarn release:tag",
Expand Down

0 comments on commit 9862898

Please sign in to comment.