Skip to content

Prepare 3.0.1 release #268

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ In your web page, load this plugin *after* the script tag for jQuery, for exampl

```html
<script src="https://code.jquery.com/jquery-3.0.0.js"></script>
<script src="https://code.jquery.com/jquery-migrate-3.0.0.js"></script>
<script src="https://code.jquery.com/jquery-migrate-3.0.1.js"></script>
```

The jQuery Migrate 3.0 plugin should be used only with jQuery 3.x releases. It can identify potential upgrade issues via its JQMIGRATE console warnings.
Expand All @@ -31,7 +31,7 @@ All warnings generated by this plugin start with the string "JQMIGRATE". A list
The development version provides console warning messages when deprecated and/or removed APIs are used. Use this version during development and debugging, and whenever you are reporting bugs to the jQuery team.

**Latest released development version:** This file is hosted on jQuery's CDN, and can be hotlinked if desired.
[https://code.jquery.com/jquery-migrate-3.0.0.js](https://code.jquery.com/jquery-migrate-3.0.0.js)
[https://code.jquery.com/jquery-migrate-3.0.1.js](https://code.jquery.com/jquery-migrate-3.0.1.js)

**Current work-in-progress build:** Although this file represents the most recent updates to the plugin, it may not have been thoroughly tested.
[https://code.jquery.com/jquery-migrate-git.js](https://code.jquery.com/jquery-migrate-git.js)
Expand All @@ -41,7 +41,7 @@ The development version provides console warning messages when deprecated and/or
The minified production file is compressed and does not generate console warnings. It will only generate a console log message upon loading, or if it detects and error such as an outdated version of jQuery that it does not support. Do not use this file for development or debugging, it will make your life miserable.

**Latest released production version:**
[https://code.jquery.com/jquery-migrate-3.0.0.min.js](https://code.jquery.com/jquery-migrate-3.0.0.min.js)
[https://code.jquery.com/jquery-migrate-3.0.1.min.js](https://code.jquery.com/jquery-migrate-3.0.1.min.js)
This file is hosted on jQuery's CDN, and can be hotlinked if desired.

**Current work-in-progress build:** Although this file represents the most recent updates to the plugin, it may not have been thoroughly tested. We do not recommend using this file on production sites since it may be unstable; use the released production version above.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"title": "jQuery Migrate",
"description": "Migrate older jQuery code to jQuery 3.0+",
"main": "dist/jquery-migrate.js",
"version": "3.0.1-pre",
"version": "3.0.1",
"homepage": "https://github.com/jquery/jquery-migrate",
"author": {
"name": "jQuery Foundation and other contributors",
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

jQuery.migrateVersion = "3.0.1-pre";
jQuery.migrateVersion = "3.0.1";