diff --git a/README.md b/README.md index 8cc560ad5c..f608b00f3d 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ [![Travis CI Status](https://api.travis-ci.com/meteor/meteor.svg?branch=devel)](https://app.travis-ci.com/github/meteor/meteor) [![CircleCI Status](https://circleci.com/gh/meteor/meteor.svg?style=svg)](https://app.circleci.com/pipelines/github/meteor/meteor?branch=devel) -[![built with Meteor](https://img.shields.io/badge/Meteor-2.13.3-green?logo=meteor&logoColor=white)](https://meteor.com) +[![built with Meteor](https://img.shields.io/badge/Meteor-2.14-green?logo=meteor&logoColor=white)](https://meteor.com) @@ -46,7 +46,7 @@ Use the same code whether you’re developing for web, iOS, Android, or desktop # 🔥 Getting Started -How about trying a getting started tutorial in your favorite technology? +How about trying a tutorial to get started with your favorite technology? | [ React](https://react-tutorial.meteor.com/) | | - | diff --git a/docs/generators/changelog/versions/2.14.md b/docs/generators/changelog/versions/2.14.md index 64af0b2a19..486c8b57d1 100644 --- a/docs/generators/changelog/versions/2.14.md +++ b/docs/generators/changelog/versions/2.14.md @@ -1,4 +1,4 @@ -## v2.14.0, 2023-12-XX +## v2.14.0, 2023-12-12 ### Highlights diff --git a/docs/history.md b/docs/history.md index cdac2df555..d9ac737b8b 100644 --- a/docs/history.md +++ b/docs/history.md @@ -10,7 +10,7 @@ -## v2.14.0, 2023-12-XX +## v2.14.0, 2023-12-12 ### Highlights diff --git a/docs/source/packages/packages-listing.md b/docs/source/packages/packages-listing.md index c297f5116f..dca65fde57 100644 --- a/docs/source/packages/packages-listing.md +++ b/docs/source/packages/packages-listing.md @@ -32,7 +32,6 @@ description: list of all Meteor core packages. - [accounts-ui-unstyled](https://github.com/meteor/meteor/tree/devel/packages/accounts-ui-unstyled) - [accounts-weibo](https://github.com/meteor/meteor/tree/devel/packages/accounts-weibo) - [allow-deny](https://github.com/meteor/meteor/tree/devel/packages/allow-deny) -- [appcache](https://github.com/meteor/meteor/tree/devel/packages/appcache) - [audit-argument-checks](https://github.com/meteor/meteor/tree/devel/packages/audit-argument-checks) - [autopublish](https://github.com/meteor/meteor/tree/devel/packages/autopublish) - [autoupdate](https://github.com/meteor/meteor/tree/devel/packages/autoupdate) diff --git a/guide/source/3.0-migration.md b/guide/source/3.0-migration.md index 3a71ee12af..7591356327 100644 --- a/guide/source/3.0-migration.md +++ b/guide/source/3.0-migration.md @@ -7,7 +7,7 @@ description: How to migrate your application to Meteor 3.0. ## What's the status of version 3.0? -**Latest version:** `3.0-alpha.19`
+**Latest version:** `3.0-beta.0`
**Node.js version:** `20.9.0 LTS` Meteor 3.0 is in alpha and not recommended for production. You can check the "[Release 3.0 Pull Request](https://github.com/meteor/meteor/pull/12359)" to see what is being changed. @@ -112,7 +112,7 @@ findOne is not available on the server. Please use findOneAsync instead. You can create a new Meteor 3.0 project by running the command below: ```bash -meteor create my-new-project --release 3.0-alpha.19 +meteor create my-new-project --release 3.0-beta.0 ``` ### How to update from version 2? @@ -120,7 +120,7 @@ meteor create my-new-project --release 3.0-alpha.19 You can update your Meteor 2.x project by running the command below inside your project folder: ```bash -meteor update --release 3.0-alpha.19 +meteor update --release 3.0-beta.0 ``` ### How to follow the progress on version 3? @@ -143,7 +143,7 @@ The migration will look like this: ```js // in you package.js Package.onUse((api) => { - api.versionsFrom(['1.10', '2.3', '3.0-alpha.19']); + api.versionsFrom(['1.10', '2.3', '3.0-beta.0']); // ^^^^^^^ for testing your package with meteor 3.0 api.versionsFrom(['1.10', '2.3', '3.0']); diff --git a/guide/source/writing-atmosphere-packages.md b/guide/source/writing-atmosphere-packages.md index 0449d0690d..31a3fa8738 100644 --- a/guide/source/writing-atmosphere-packages.md +++ b/guide/source/writing-atmosphere-packages.md @@ -296,6 +296,14 @@ Package.onTest(function(api) { From within your test entry point, you can import other files as you would in the package proper. +You can also use [`mtest`](https://github.com/zodern/mtest) to test your packages like so: + +```bash +mtest --package ./ --once 2.14 +``` + +Which helps immensely if you'd like to test your package in CI/CD setup. You can see an example [here](https://github.com/monti-apm/monti-apm-agent/blob/master/.github/workflows/test.yml). + You can read more about testing in Meteor in the [Testing article](testing.html).

Publishing your package