node-easywechat 3.3.0 → 3.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,6 +19,6 @@ jobs:
19
19
  - run: npm install
20
20
  - run: npm run build
21
21
  - run: npm test
22
- - run: npm publish --tag latest
22
+ - run: npm publish --tag second
23
23
  env:
24
24
  NODE_AUTH_TOKEN: ${{secrets.npm_token}}
@@ -19,6 +19,6 @@ jobs:
19
19
  - run: npm install
20
20
  - run: npm run build
21
21
  - run: npm test
22
- - run: npm publish --tag next
22
+ - run: npm publish --tag latest
23
23
  env:
24
24
  NODE_AUTH_TOKEN: ${{secrets.npm_token}}
package/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
3
 
4
+ ## v3.3.1 (2023-03-27)
5
+
6
+ - Fix: 调整3.x分支为npm的latest标签
7
+
4
8
  ## v3.3.0 (2023-03-22)
5
9
 
6
10
  - Feat: 新增企业微信开放平台模块
package/README.md CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  ### 安装
16
16
 
17
- `npm install -S node-easywechat@next`
17
+ `npm install -S node-easywechat`
18
18
 
19
19
  **注:3.x 版本需要 Node.js 15.6.0 及以上版本**
20
20
 
@@ -301,5 +301,5 @@ app.setRequest(request);
301
301
  - [x] 小程序
302
302
  - [x] 开放平台
303
303
  - [x] 企业微信
304
- - [ ] 企业微信开放平台
305
- - [ ] 自定义
304
+ - [x] 企业微信开放平台
305
+ - [x] 自定义
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-easywechat",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "description": "EasyWechat SDK for Node.js (NOT OFFICIAL)",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {