Skip to content

Commit b3d2601

Browse files
author
brizental
committed
Merge branch 'release-v0.1.1' into release
2 parents fe44e95 + 4c817ab commit b3d2601

File tree

5 files changed

+121
-56
lines changed

5 files changed

+121
-56
lines changed

.circleci/config.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ jobs:
7575
command: npm --prefix ./glean install
7676
- run:
7777
name: NPM Authentication
78-
command: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
78+
command: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > glean/.npmrc
7979
- run:
8080
name: Publish to npm
81-
command: export PATH=.:$PATH && (cd glean && npm publish)
81+
command: export PATH=.:$PATH && (cd glean && npm publish --access public)
8282

8383
workflows:
8484
version: 2
@@ -88,14 +88,11 @@ workflows:
8888
- unit-tests
8989
- check-qt-js
9090
- publish:
91-
requires:
92-
- lint
93-
- unit-tests
9491
filters:
9592
branches:
96-
only: release
93+
ignore: /.*/
9794
tags:
98-
only: /v[0-9]+(\.[0-9]+)*/
95+
only: /^v.*/
9996
# Comment this job away until Bug 1681899 is resolved.
10097
# - check-size:
10198
# filters:

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Unreleased changes
22

3-
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.1.0...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.1.1...main)
4+
# v0.1.1 (2021-02-17)
5+
6+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.1.0...v0.1.1)
7+
8+
* [#77](https://github.com/mozilla/glean.js/pull/77): Include README.md file in `@mozilla/glean` package bundle.
9+
410
# v0.1.0 (2021-02-17)
511

612
[Full changelog](https://github.com/mozilla/glean.js/compare/46f028fb4ea7b8f312daf4666904c81d0a3eb171...v0.1.0)

bin/prepare-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ fi
7676

7777
FILE=glean/package.json
7878
run $SED -i.bak -E \
79-
-e "s/^version: \"[0-9a-z.-]+\"/version: \"${NEW_VERSION}\"/" \
79+
-e "s/\"version\": \"[0-9a-z.-]+\"/\"version\": \"${NEW_VERSION}\"/" \
8080
"${WORKSPACE_ROOT}/${FILE}"
8181
run rm "${WORKSPACE_ROOT}/${FILE}.bak"
8282

0 commit comments

Comments
 (0)