-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): prepare to release influxdb3-js-0.1.0
- Loading branch information
Showing
6 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
## 0.1.0 [unreleased] | ||
## 0.1.0 [2023-06-29] | ||
|
||
- initial release of new client version | ||
- write using v2 api | ||
- query using FlightSQL | ||
- query using InfluxQl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# **Releasing a new version** | ||
# Ensure that: | ||
# - You have administrator access to this repo on GitHub | ||
# - You have permissions to publish to the [influxdata](https://www.npmjs.com/org/influxdata) organization on npm | ||
# - You are on `main` and the working tree is clean | ||
# Then run the publish target with VERSION specified: | ||
# ``` | ||
# make publish VERSION=1.8.0 | ||
# ``` | ||
.DEFAULT_GOAL := help | ||
|
||
help: | ||
@echo "Please use \`make <target>' where <target> is one of" | ||
@echo "" | ||
@echo " publish to publish packages to specified version by VERSION property. make publish VERSION=1.1.0" | ||
@echo "" | ||
|
||
publish: | ||
$(if $(VERSION),,$(error VERSION is not defined. Pass via "make publish VERSION=1.1.0")) | ||
git checkout main | ||
git pull | ||
yarn install --frozen-lockfile | ||
node scripts/change-version.js | ||
yarn run build | ||
yarn run test:unit | ||
@echo "Publishing $(VERSION)..." | ||
git commit -am "chore(release): prepare to release influxdb3-js-$(VERSION)" | ||
npx lerna publish $(VERSION) | ||
@echo "Publish successful" | ||
@echo "" | ||
@echo "Next steps:" | ||
@echo " - publish updated API documentation by: \"yarn apidoc && yarn apidoc:gh-pages\"" | ||
@echo " - add new version to CHANGELOG.md" | ||
@echo " - push changes to repository by : \"git commit -am 'chore(release): prepare to next development iteration [skip CI]' && git push\"" | ||
@echo "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const CLIENT_LIB_VERSION = '0.0.0' | ||
export const CLIENT_LIB_VERSION = '0.1.0' |