From d641634fe951716fa24e2afdcd891de8a704224c Mon Sep 17 00:00:00 2001 From: jojomatik Date: Sun, 17 Apr 2022 22:36:33 +0200 Subject: [PATCH] Release 1.34.0 (#988) * Update package.json * Update HISTORY.md --- .github/workflows/npm-publish.yml | 27 +++++++++++++++++---------- docs/HISTORY.md | 5 +++++ package.json | 2 +- 3 files changed, 23 insertions(+), 11 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 7e90156..387db40 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -13,13 +13,20 @@ jobs: - name: Set up Node.js uses: actions/setup-node@master with: - node-version: 10.0.0 - - name: Publish if version has been updated - uses: pascalgn/npm-publish-action@4f4bf159e299f65d21cd1cbd96fc5d53228036df - with: # All of theses inputs are optional - tag_name: "%s" - tag_message: "%s" - commit_pattern: "^Release (\\S+)" - env: # More info about the environment variables in the README - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Leave this as is, it's automatically generated - NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} # You need to set this in your repo settings + node-version: 14.0.0 + - id: publish + uses: JS-DevTools/npm-publish@v1 + with: + token: ${{ secrets.NPM_AUTH_TOKEN }} + - name: Create Release + if: steps.publish.outputs.type != 'none' + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.publish.outputs.version }} + release_name: Release ${{ steps.publish.outputs.version }} + body: ${{ steps.publish.outputs.version }} + draft: false + prerelease: false \ No newline at end of file diff --git a/docs/HISTORY.md b/docs/HISTORY.md index 195b855..0761376 100644 --- a/docs/HISTORY.md +++ b/docs/HISTORY.md @@ -1,5 +1,10 @@ # History +## 1.34.0 + +* Export defaultVersion (@matthi4s) +* Fix missing readable-stream types (@IceTank) + ## 1.33.0 * Bump mcdata diff --git a/package.json b/package.json index 0f29b6b..6ffc92a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minecraft-protocol", - "version": "1.33.0", + "version": "1.34.0", "description": "Parse and serialize minecraft packets, plus authentication and encryption.", "main": "src/index.js", "types": "src/index.d.ts",