1
0
mirror of https://github.com/dwaxweiler/connector-mobilizon synced 2025-06-05 21:59:25 +02:00

4 Commits

Author SHA1 Message Date
e7fd47a346 release version 0.11.5 2024-04-02 22:09:20 +02:00
8d4e81878e confirm compatibility with WordPress 6.5 2024-04-02 22:02:55 +02:00
418dc829d0 document after-release step 2024-04-02 22:01:53 +02:00
a75d3a3915 prepare next release 2023-11-11 20:43:50 +01:00
4 changed files with 11 additions and 4 deletions

View File

@ -34,6 +34,9 @@ The current changelog can be found under [source/changelog.txt](source/changelog
11. Commit the new version in git with the same message. 11. Commit the new version in git with the same message.
12. Tag the new version: `git tag v<version>` 12. Tag the new version: `git tag v<version>`
13. Push the new tag to the repository: `git push --tags` 13. Push the new tag to the repository: `git push --tags`
14. Append `-next` to the version number in `package.json`.
15. Update the `package-lock.json`: `npm i --package-lock-only`
16. Commit: `git commit -am "prepare next release"`
### Other commands ### Other commands

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "connector-mobilizon", "name": "connector-mobilizon",
"version": "0.11.4", "version": "0.11.5",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "connector-mobilizon", "name": "connector-mobilizon",
"version": "0.11.4", "version": "0.11.5",
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"graphql": "16.8.1", "graphql": "16.8.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "connector-mobilizon", "name": "connector-mobilizon",
"version": "0.11.4", "version": "0.11.5",
"description": "Display Mobilizon events in WordPress.", "description": "Display Mobilizon events in WordPress.",
"private": true, "private": true,
"type": "module", "type": "module",
@ -63,7 +63,7 @@
"niceName": "Connector for Mobilizon", "niceName": "Connector for Mobilizon",
"phpMinimumVersion": 7.4, "phpMinimumVersion": 7.4,
"wordpressMinimumVersion": 5.6, "wordpressMinimumVersion": 5.6,
"wordpressTestedUpToVersion": "6.3" "wordpressTestedUpToVersion": "6.5"
}, },
"lint-staged": { "lint-staged": {
"source/**/*.js": "eslint", "source/**/*.js": "eslint",

View File

@ -6,6 +6,10 @@
#### Fixed #### Fixed
#### Security #### Security
### [0.11.5]
#### Changed
- Confirm compatibility with WordPress 6.5
### [0.11.4] ### [0.11.4]
#### Changed #### Changed
- Confirm compatibility with WordPress 6.4 - Confirm compatibility with WordPress 6.4