Skip to content

Commit

Permalink
chore(Release): 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skick1234 committed Oct 16, 2021
1 parent 6af141c commit 6f89ed6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 16

- name: Install dependencies
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 16

- name: Install dependencies
run: npm install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish DisTube Beta
name: Publish DisTube
on:
release:
types: [created]
Expand All @@ -13,7 +13,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 16

- name: Login
run: npm config set //registry.npmjs.org/:_authToken ${{secrets.NPM_TOKEN}}
Expand All @@ -28,4 +28,4 @@ jobs:
run: npm run build

- name: Publish
run: npm run publish:beta
run: npm run publish:stable
11 changes: 4 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,16 @@ name: Testing
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
node: ["14", "16"]
name: Test on Node.js v${{ matrix.node }}
name: Test on Node.js v16
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install Node.js v${{ matrix.node }}
uses: actions/setup-node@v1
- name: Install Node.js v16
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
node-version: 16

- name: Install dependencies
run: npm install
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "distube",
"version": "3.0.0-beta.40",
"version": "3.0.0",
"description": "A Discord.js module to simplify your music commands and play songs with audio filters on Discord without any API key. Support YouTube, SoundCloud, Bandcamp, Facebook, and 700+ more sites",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand All @@ -12,7 +12,7 @@
"prettier": "prettier --write **/*.{js,ts,json,yml,yaml}",
"build": "tsc",
"build:check": "tsc --noEmit --incremental false",
"publish:beta": "npm publish --tag beta",
"publish:stable": "npm publish",
"ncu": "ncu -u --dep dev,prod",
"postinstall": "husky install",
"prepublishOnly": "pinst -d",
Expand Down Expand Up @@ -63,9 +63,9 @@
"@discordjs/voice": "^0.6.0",
"@distube/docgen": "github:distubejs/docgen",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.9",
"@types/node": "^16.11.0",
"babel-jest": "^27.2.5",
"discord.js": "13.1.0",
"discord.js": "^13.2.0",
"eslint": "^7.32.0",
"eslint-config-distube": "^1.4.0",
"husky": "^7.0.2",
Expand Down

0 comments on commit 6f89ed6

Please sign in to comment.