Skip to content

Commit 3326ded

Browse files
committed
Tagging the 1.4.1 release.
1 parent e84006e commit 3326ded

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ In your web page, load this plugin *after* the script for jQuery:
88

99
```html
1010
<script src="http://code.jquery.com/jquery-1.11.3.js"></script>
11-
<script src="http://code.jquery.com/jquery-migrate-1.4.0.js"></script>
11+
<script src="http://code.jquery.com/jquery-migrate-1.4.1.js"></script>
1212
```
1313

1414
Note that jQuery 3.0 has a [separate version](https://github.com/jquery/jquery-migrate/) of jQuery Migrate. The two versions cannot be used simultaneously on a page, so you should fix any upgrade issues identified by Migrate 1.x before attempting an upgrade.
@@ -26,7 +26,7 @@ All warnings generated by this plugin start with the string "JQMIGRATE". A list
2626
This 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.
2727

2828
**Latest released development version:** This file is hosted on jQuery's CDN, and can be hotlinked if desired.
29-
[http://code.jquery.com/jquery-migrate-1.4.0.js](http://code.jquery.com/jquery-migrate-1.4.0.js)
29+
[http://code.jquery.com/jquery-migrate-1.4.1.js](http://code.jquery.com/jquery-migrate-1.4.1.js)
3030

3131
**Current work-in-progress build:** Although this file represents the most recent updates to the plugin, it may not have been thoroughly tested.
3232
[http://code.jquery.com/jquery-migrate-git.js](http://code.jquery.com/jquery-migrate-git.js)
@@ -36,7 +36,7 @@ This version provides console warning messages when deprecated and/or removed AP
3636
The minified production file is compressed and does not generate console warnings. Do not use this file for development or debugging, it will make your life miserable.
3737

3838
**Latest released production version:**
39-
[http://code.jquery.com/jquery-migrate-1.4.0.min.js](http://code.jquery.com/jquery-migrate-1.4.0.min.js)
39+
[http://code.jquery.com/jquery-migrate-1.4.1.min.js](http://code.jquery.com/jquery-migrate-1.4.1.min.js)
4040
This file is hosted on jQuery's CDN, and can be hotlinked if desired.
4141

4242
**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.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"title": "jQuery Migrate",
44
"description": "Migrate older jQuery code to jQuery 1.9+",
55
"main": "dist/jquery-migrate.js",
6-
"version": "1.4.1-pre",
6+
"version": "1.4.1",
77
"homepage": "https://github.com/jquery/jquery-migrate",
88
"author": {
99
"name": "jQuery Foundation and other contributors",
10-
"url": "https://github.com/jquery/jquery-migrate/blob/1.x-stable/AUTHORS.txt"
10+
"url": "https://github.com/jquery/jquery-migrate/blob/1.4.1/AUTHORS.txt"
1111
},
1212
"repository": {
1313
"type": "git",

src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
jQuery.migrateVersion = "1.4.1-pre";
2+
jQuery.migrateVersion = "1.4.1";

0 commit comments

Comments
 (0)