Skip to content

Commit 1995281

Browse files
author
timlinux
committed
Bumped version up to 1.0.1
git-svn-id: http://svn.osgeo.org/qgis/branches/Version-1_0@10161 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 18d0300 commit 1995281

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
SET(CPACK_PACKAGE_VERSION_MAJOR "1")
33
SET(CPACK_PACKAGE_VERSION_MINOR "0")
4-
SET(CPACK_PACKAGE_VERSION_PATCH "0")
4+
SET(CPACK_PACKAGE_VERSION_PATCH "1")
55
SET(COMPLETE_VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
66
SET(RELEASE_NAME "Kore")
77
SET(PROJECT_VERSION ${COMPLETE_VERSION})

doc/index.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</td>
1111
<td valign="center">
1212
<span class="header">Quantum GIS Documentation</span><br>
13-
<span class="subheader">Version 1.0.0 <i>Kore</i></span><br>
13+
<span class="subheader">Version 1.0.1 <i>Kore</i></span><br>
1414
<span class="warning">Please read this entire document for important information about this release.</span>
1515
</td>
1616
</tr>
@@ -21,6 +21,10 @@
2121
-->
2222
<!-- This documentation describes the Quantum GIS (QGIS) application. More
2323
information on QGIS is available on the web page at http://qgis.org. -->
24+
<h2>Whats new in Version 1.0.1?</h2>
25+
<p>This is a bugfix release only. A list of closed issues can be found at
26+
<a href="https://trac.osgeo.org/qgis/query?status=closed&milestone=Version+1.0.1">The 1.0.1 Milestone on QGIS trac</a>
27+
2428
<h2>Whats new in Version 1.0.0?</h2>
2529
<p>
2630
</p>

src/app/qgisapp.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -1805,8 +1805,13 @@ void QgisApp::about()
18051805
abt->setVersion( versionString );
18061806
QString whatsNew = "<html><body>" + tr( "Version" ) + " ";
18071807
whatsNew += QGis::QGIS_VERSION;
1808+
whatsNew += "<h3>" + tr( "Changes" ) + "</h3>" +
1809+
tr( "QGIS 1.0.1 is a bug fix release for the stable version of QGIS."
1810+
"A summary of the improvements can be found at "
1811+
"https://trac.osgeo.org/qgis/query?status=closed&milestone=Version+1.0.1"
1812+
);
18081813
whatsNew += "<h3>" + tr( "New features" ) + "</h3>" +
1809-
tr( "This release candidate includes over 265 bug fixes and enchancements "
1814+
tr( "The QGIS 1.0 release includes over 265 bug fixes and enchancements "
18101815
"over the QGIS 0.11.0 release. In addition we have added "
18111816
"the following new features:" );
18121817
whatsNew += "<ul><li>"

0 commit comments

Comments
 (0)