Skip to content

Commit

Permalink
Release 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbrand committed Feb 14, 2023
1 parent efb762e commit 875be3d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.0.8 (2023-02-14)

- Use the released version of `@converse/localforage-getitems`
- Update 3rd party dependencies

## 0.0.7 (2022-04-08)

- Move code that needs to be bundled to `dependencies` from `devDependencies`
Expand Down
10 changes: 5 additions & 5 deletions RELEASE_CHECKLIST.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Release Checklist

1. Make sure all tests pass (run 'make check')
2. Update CHANGELOG.md
3. Run `make release VERSION=0.0.1` (on Mac, prefix with "SED=gsed" so that GNU-sed is used).
4. `git commit -am "Release 0.0.1"`
5. Tag code with version (`git tag -s vVERSION -m "Release 0.0.1"` )
6. Push repo and tags (`git push && git push origin v0.0.1`)
2. Update CHANGES.md
3. Run `make release VERSION=0.0.8` (on Mac, prefix with "SED=gsed" so that GNU-sed is used).
4. `git commit -am "Release 0.0.8"`
5. Tag code with version (`git tag -s vVERSION -m "Release 0.0.8"` )
6. Push repo and tags (`git push && git push origin v0.0.8`)
7. Publish on NPM: "npm publish"
8. Update the release notes on https://github.com/conversejs/skeletor/releases
9. Run `npm pack` and upload the tgz file to the releases page.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"lint": "eslint src/*.js test/*.js"
},
"module": "src/main.js",
"version": "0.0.7",
"version": "0.0.8",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion src/drivers/sessionStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ async function setItem(key, value, callback) {
}
}
});

}

function dropInstance(options, callback) {
Expand Down

0 comments on commit 875be3d

Please sign in to comment.