diff --git a/docs/generators/changelog/versions/2.13.3.md b/docs/generators/changelog/versions/2.13.3.md new file mode 100644 index 0000000000..cc7d30d8f8 --- /dev/null +++ b/docs/generators/changelog/versions/2.13.3.md @@ -0,0 +1,41 @@ +## v2.13.3, 2023-09-08 + +### Highlights + +* Solves the issue [#12771: Version 2.13.1 suddenly requires a newer glibc version](https://github.com/meteor/meteor/issues/12771). + +#### Breaking Changes + +N/A + +#### Internal API changes + +N/A + +#### Migration Steps + +Please run the following command to update your project: + +```bash + +meteor update --release 2.13.3 + +``` + + +#### Meteor Version Release + + +* `Command line`: + - The bundle version was changed to 14.21.4.3 to use another compiled version of the [ESM Node.js](https://guide.meteor.com/using-node-v14.21.4). The previous version was generated using a different unix distribution (Ubuntu) while we should use CentOS. + + +#### Special thanks to + +- [@aquinoit](https://github.com/aquinoit). +- [@fredmaiaarantes](https://github.com/fredmaiaarantes). +- [@Grubba27](https://github.com/Grubba27). + +For making this great framework even better! + + diff --git a/docs/history.md b/docs/history.md index 3a0e9b6a75..c82747c090 100644 --- a/docs/history.md +++ b/docs/history.md @@ -10,6 +10,47 @@ +## v2.13.3, 2023-09-08 + +### Highlights + +* Solves the issue [#12771: Version 2.13.1 suddenly requires a newer glibc version](https://github.com/meteor/meteor/issues/12771). + +#### Breaking Changes + +N/A + +#### Internal API changes + +N/A + +#### Migration Steps + +Please run the following command to update your project: + +```bash + +meteor update --release 2.13.3 + +``` + + +#### Meteor Version Release + + +* `Command line`: + - The bundle version was changed to 14.21.4.3 to use another compiled version of the [ESM Node.js](https://guide.meteor.com/using-node-v14.21.4). The previous version was generated using a different unix distribution (Ubuntu) while we should use CentOS. + + +#### Special thanks to + +- [@aquinoit](https://github.com/aquinoit). +- [@fredmaiaarantes](https://github.com/fredmaiaarantes). +- [@Grubba27](https://github.com/Grubba27). + +For making this great framework even better! + + ## v2.13.1, 2023-09-04 ### Highlights diff --git a/meteor b/meteor index 5f39756b8b..0f1769385c 100755 --- a/meteor +++ b/meteor @@ -1,6 +1,6 @@ #!/usr/bin/env bash -BUNDLE_VERSION=14.21.4.1 +BUNDLE_VERSION=14.21.4.3 # OS Check. Put here because here is where we download the precompiled diff --git a/npm-packages/meteor-installer/README.md b/npm-packages/meteor-installer/README.md index 9a3c7d4b15..9a84c48eca 100644 --- a/npm-packages/meteor-installer/README.md +++ b/npm-packages/meteor-installer/README.md @@ -14,6 +14,7 @@ npm install -g meteor | NPM Package | Meteor Official Release | |-------------|-------------------------| +| 2.13.3 | 2.13.3 | | 2.13.1 | 2.13.1 | | 2.13.0 | 2.13.0 | | 2.12.1 | 2.12.0 | diff --git a/npm-packages/meteor-installer/config.js b/npm-packages/meteor-installer/config.js index 4438ec973e..d0c58c2c7c 100644 --- a/npm-packages/meteor-installer/config.js +++ b/npm-packages/meteor-installer/config.js @@ -1,7 +1,7 @@ const path = require('path'); const os = require('os'); -const METEOR_LATEST_VERSION = '2.13.1'; +const METEOR_LATEST_VERSION = '2.13.3'; const sudoUser = process.env.SUDO_USER || ''; function isRoot() { return process.getuid && process.getuid() === 0; diff --git a/npm-packages/meteor-installer/package.json b/npm-packages/meteor-installer/package.json index f422ceef29..0465731d17 100644 --- a/npm-packages/meteor-installer/package.json +++ b/npm-packages/meteor-installer/package.json @@ -1,6 +1,6 @@ { "name": "meteor", - "version": "2.13.1", + "version": "2.13.3", "description": "Install Meteor", "main": "install.js", "scripts": { diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index 5509d79a00..f891d8afaa 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'The Meteor command-line tool', - version: '2.13.1', + version: '2.13.3', }); Package.includeTool(); diff --git a/scripts/admin/meteor-release-experimental.json b/scripts/admin/meteor-release-experimental.json index d5284b9884..f6a2edccb5 100644 --- a/scripts/admin/meteor-release-experimental.json +++ b/scripts/admin/meteor-release-experimental.json @@ -1,6 +1,6 @@ { "track": "METEOR", - "version": "2.13-rc.4", + "version": "2.13.3-rc.1", "recommended": false, "official": false, "description": "Meteor experimental release" diff --git a/scripts/admin/meteor-release-official.json b/scripts/admin/meteor-release-official.json index f7bdee0399..2e8d355c59 100644 --- a/scripts/admin/meteor-release-official.json +++ b/scripts/admin/meteor-release-official.json @@ -1,6 +1,6 @@ { "track": "METEOR", - "version": "2.13.1", + "version": "2.13.3", "recommended": false, "official": true, "description": "The Official Meteor Distribution"