From 4a506f813288b22c81a27b9cd99fe5c536a73d9c Mon Sep 17 00:00:00 2001 From: Leonardo Venturini Date: Thu, 12 Sep 2024 12:27:25 -0400 Subject: [PATCH] update version --- .../breaking-changes/upgrading-packages.md | 2 +- v3-docs/v3-migration-docs/guide/publishing-packages.md | 8 ++++---- v3-docs/v3-migration-docs/index.md | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/v3-docs/v3-migration-docs/breaking-changes/upgrading-packages.md b/v3-docs/v3-migration-docs/breaking-changes/upgrading-packages.md index 7939ffaa08..cee91971bc 100644 --- a/v3-docs/v3-migration-docs/breaking-changes/upgrading-packages.md +++ b/v3-docs/v3-migration-docs/breaking-changes/upgrading-packages.md @@ -20,7 +20,7 @@ Package.onUse((api) => { }); ``` -Then you can publish your package and test it with Meteor 3.0, by running `meteor publish --release=3.0.1`. +Then you can publish your package and test it with Meteor 3.0, by running `meteor publish --release=3.0.3`. ## Changes for packages that do not use Meteor packages that had breaking change diff --git a/v3-docs/v3-migration-docs/guide/publishing-packages.md b/v3-docs/v3-migration-docs/guide/publishing-packages.md index 72e7c0855b..0883c2c76f 100644 --- a/v3-docs/v3-migration-docs/guide/publishing-packages.md +++ b/v3-docs/v3-migration-docs/guide/publishing-packages.md @@ -1,11 +1,11 @@ ## Publishing Packages -Publishing a Meteor package involves a few key steps, including setting up your package, testing it, and finally publishing it to the Meteor package repository. Here's a brief guide on how to publish Meteor packages using Meteor 3, specifically with the `meteor publish --release=3.0.1` command. +Publishing a Meteor package involves a few key steps, including setting up your package, testing it, and finally publishing it to the Meteor package repository. Here's a brief guide on how to publish Meteor packages using Meteor 3, specifically with the `meteor publish --release=3.0.3` command. ### Prerequisites - Ensure you have Meteor 3 installed. You can check your Meteor version and automatically download it if it's missing: ```bash - meteor --version --release=3.0.1 + meteor --version --release=3.0.3 ``` - Have a Meteor developer account. You can create one at [Meteor's official website](https://www.meteor.com/). @@ -87,10 +87,10 @@ meteor test-packages ./ --driver-package meteortesting:mocha Once your package is ready and tested, you can publish it using the following command: ```bash -meteor publish --release=3.0.1 +meteor publish --release=3.0.3 ``` -You can replace `3.0.1` with the appropriate release version. If you omit the `--release` flag, it will default to the latest official Meteor version, which at the time of this writing is Meteor 2. That way packages published without specifying a release will not be compatible with Meteor 3, as there will probably be a `fibers` related error. +You can replace `3.0.3` with the appropriate release version. If you omit the `--release` flag, it will default to the latest official Meteor version, which at the time of this writing is Meteor 2. That way packages published without specifying a release will not be compatible with Meteor 3, as there will probably be a `fibers` related error. - **Login if prompted:** You will be asked to log in with your Meteor developer account credentials if you aren't already logged in. diff --git a/v3-docs/v3-migration-docs/index.md b/v3-docs/v3-migration-docs/index.md index e5fc4d07a8..1caf2a87ce 100644 --- a/v3-docs/v3-migration-docs/index.md +++ b/v3-docs/v3-migration-docs/index.md @@ -20,7 +20,7 @@ Meteor 3.0 is currently in its official version! You can create a new Meteor 3.0 project by running the command below: ```bash -meteor create my-new-project --release 3.0.1 +meteor create my-new-project --release 3.0.3 ``` ## How to upgrade from Meteor 2.x? @@ -28,7 +28,7 @@ meteor create my-new-project --release 3.0.1 You can upgrade your Meteor 2.x project by running the command below inside your project folder: ```bash -meteor update --release 3.0.1 +meteor update --release 3.0.3 meteor reset # resets project to a fresh state ```