Skip to content

Commit

Permalink
Merge branch 'release-v0.2.0' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
brizental committed Feb 23, 2021
2 parents b3d2601 + b43ddb4 commit 730d38f
Show file tree
Hide file tree
Showing 87 changed files with 11,256 additions and 6,109 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
nvm install node
npm --prefix ./glean install
npm --prefix ./glean run build
npm --prefix ./glean run build:qt
- run:
name: Verify no Javascript errors found in Qt
command: bin/qt-js-check.sh
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Unreleased changes

[Full changelog](https://github.com/mozilla/glean.js/compare/v0.1.1...main)
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.2.0...main)
# v0.2.0 (2021-02-23)

* [#85](https://github.com/mozilla/glean.js/pull/85): Include type declarations in `@mozilla/glean` webext package bundle.

[Full changelog](https://github.com/mozilla/glean.js/compare/v0.1.1...v0.2.0)
# v0.1.1 (2021-02-17)

[Full changelog](https://github.com/mozilla/glean.js/compare/v0.1.0...v0.1.1)
Expand Down
9 changes: 9 additions & 0 deletions bin/prepare-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,15 @@ ${CHANGELOG}
EOL
fi

## Constants ###

FILE=glean/src/core/constants.ts

run $SED -i.bak -E \
-e "s/export const GLEAN_VERSION = \"[0-9a-z.-]+\";/export const GLEAN_VERSION = \"${NEW_VERSION}\";/" \
"${WORKSPACE_ROOT}/${FILE}"
run rm "${WORKSPACE_ROOT}/${FILE}.bak"

echo "Everything prepared for v${NEW_VERSION}"
echo
echo "Changed files:"
Expand Down
Loading

0 comments on commit 730d38f

Please sign in to comment.