Skip to content

Commit

Permalink
Prepare 4.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlaltca committed Mar 30, 2018
1 parent 94cfb99 commit da21818
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .apigen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ annotationGroups:
- todo
- deprecated
groups: auto
title: Prado 4.0 API Manual
title: Prado 4.0.1 API Manual
tree: true
version: true
sourceCode: no
Expand Down
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Version 4.0.1 - in development
## Version 4.0.1 - Apr 1, 2018

CHG: Removed all deprecated code (ctrlaltca)
CHG: Removed deprecated components based on the prototype jajascript library (ctrlaltca)
Expand Down
2 changes: 1 addition & 1 deletion UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Upgrading Instructions for PRADO Framework v4.0
# Upgrading Instructions for PRADO Framework v4.0.1

### !!!IMPORTANT!!!

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"pradosoft/prado-apigen-theme" : "*"
},
"provide" : {
"pradosoft/prado" : "4.0"
"pradosoft/prado" : "4.0.1"
},
"suggest" : {
"ext-apc" : "Enables the use of TAPCCache as a cache handler",
Expand Down
2 changes: 1 addition & 1 deletion framework/PradoBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class PradoBase
*/
public static function getVersion()
{
return '4.0.0';
return '4.0.1';
}

public static function init()
Expand Down
6 changes: 3 additions & 3 deletions framework/Web/Javascripts/source/prado/prado.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ var Prado =
* Version of Prado clientscripts
* @var Version
*/
Version: '4.0.0',
Version: '4.0.1',

/**
* Registry for Prado components
Expand Down Expand Up @@ -453,7 +453,7 @@ Prado.Element =
setTimeout(function(){
jQuery("#"+element).focus();
}, 100);
} else {
} else {
jQuery("#"+element).focus();
}
},
Expand Down Expand Up @@ -546,7 +546,7 @@ Prado.Element =
}
if(self)
jQuery('#'+element).replaceWith(content);
else
else
jQuery('#'+element).html(content);
},

Expand Down

0 comments on commit da21818

Please sign in to comment.