[Checkins] SVN: hurry.jquery/trunk/ Made changes to release jQuery 1.4.2.

Souheil CHELFOUH souheil at chelfouh.com
Sun Mar 14 09:01:24 EDT 2010


Log message for revision 109944:
  Made changes to release jQuery 1.4.2.
  

Changed:
  U   hurry.jquery/trunk/CHANGES.txt
  U   hurry.jquery/trunk/setup.py
  U   hurry.jquery/trunk/src/hurry/jquery/jquery.txt
  U   hurry.jquery/trunk/src/hurry/jquery/prepare.py

-=-
Modified: hurry.jquery/trunk/CHANGES.txt
===================================================================
--- hurry.jquery/trunk/CHANGES.txt	2010-03-14 11:35:22 UTC (rev 109943)
+++ hurry.jquery/trunk/CHANGES.txt	2010-03-14 13:01:24 UTC (rev 109944)
@@ -1,9 +1,11 @@
 CHANGES
 *******
 
-1.3.2.2 (unreleased)
+1.4.2.1 (2010-03-14)
 ====================
 
+* Using jQuery-1.4.2.
+
 * Added zest.releaser and using its prerelease-entrypoint to assure download
   of the jquery libary before release.  No functional changes.
 

Modified: hurry.jquery/trunk/setup.py
===================================================================
--- hurry.jquery/trunk/setup.py	2010-03-14 11:35:22 UTC (rev 109943)
+++ hurry.jquery/trunk/setup.py	2010-03-14 13:01:24 UTC (rev 109944)
@@ -1,8 +1,8 @@
 from setuptools import setup, find_packages
 import os
 
-JQUERY_VERSION = '1.3.2'
-version = '1.3.2.2dev'
+JQUERY_VERSION = '1.4.2'
+version = '1.4.2.1'
 # Name version after JQUERY_VERSION + .suffix
 
 

Modified: hurry.jquery/trunk/src/hurry/jquery/jquery.txt
===================================================================
--- hurry.jquery/trunk/src/hurry/jquery/jquery.txt	2010-03-14 11:35:22 UTC (rev 109943)
+++ hurry.jquery/trunk/src/hurry/jquery/jquery.txt	2010-03-14 13:01:24 UTC (rev 109944)
@@ -23,10 +23,10 @@
   >>> needed = NeededInclusions()
   >>> needed.need(jquery)
   >>> print needed.render()
-  <script type="text/javascript" src="http://localhost/static/jquery/jquery-1.3.2.js"></script>
+  <script type="text/javascript" src="http://localhost/static/jquery/jquery-1.4.2.js"></script>
 
   >>> needed.mode('minified')
   >>> print needed.render()
-  <script type="text/javascript" src="http://localhost/static/jquery/jquery-1.3.2.min.js"></script>
+  <script type="text/javascript" src="http://localhost/static/jquery/jquery-1.4.2.min.js"></script>
 
-"""
\ No newline at end of file
+"""

Modified: hurry.jquery/trunk/src/hurry/jquery/prepare.py
===================================================================
--- hurry.jquery/trunk/src/hurry/jquery/prepare.py	2010-03-14 11:35:22 UTC (rev 109943)
+++ hurry.jquery/trunk/src/hurry/jquery/prepare.py	2010-03-14 13:01:24 UTC (rev 109944)
@@ -5,8 +5,8 @@
 
 from hurry.resource import generate_code, ResourceInclusion, Library
 
-BASEURL = "http://jqueryjs.googlecode.com/files/"
-VERSION = '1.3.2'
+BASEURL = "http://code.jquery.com/"
+VERSION = '1.4.2'
 MINIFIED = "jquery-%s.min.js" % VERSION
 FULL = "jquery-%s.js" % VERSION
 



More information about the checkins mailing list