Changeset - 5383780b5fe4
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 14 years ago 2011-10-07 19:59:47
marcin@python-works.com
version bump
2 files changed with 16 insertions and 3 deletions:
0 comments (0 inline, 0 general)
docs/changelog.rst
Show inline comments
 
@@ -3,7 +3,8 @@
 
Changelog
 
=========
 

	
 
1.2.0 (**2011-XX-XX**)
 

	
 
1.3.0 (**XXXX-XX-XX**)
 
======================
 

	
 
:status: in-progress
 
@@ -12,6 +13,18 @@ Changelog
 
news
 
----
 

	
 
fixes
 
-----
 

	
 

	
 

	
 

	
 
1.2.0 (**2011-10-07**)
 
======================
 

	
 
news
 
----
 

	
 
- implemented #47 repository groups
 
- implemented #89 Can setup google analytics code from settings menu
 
- implemented #91 added nicer looking archive urls with more download options
rhodecode/__init__.py
Show inline comments
 
@@ -25,9 +25,9 @@
 
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
import platform
 

	
 
VERSION = (1, 2, 0, 'beta')
 
VERSION = (1, 3, 0, 'beta')
 
__version__ = '.'.join((str(each) for each in VERSION[:4]))
 
__dbversion__ = 3 #defines current db version for migrations
 
__dbversion__ = 4 #defines current db version for migrations
 
__platform__ = platform.system()
 
__license__ = 'GPLv3'
 

	
0 comments (0 inline, 0 general)