diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-10-21 11:36:44 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-10-21 11:36:44 +0200 |
commit | ee42e9d489415f0fdd49c73ccafd4967fa95d40e (patch) | |
tree | 3316e8c1c85b35d3d0020028c82866326fac55d8 | |
parent | d8276af301e3d559662a47d45c1295b6dd739362 (diff) | |
download | nextcloud-server-ee42e9d489415f0fdd49c73ccafd4967fa95d40e.tar.gz nextcloud-server-ee42e9d489415f0fdd49c73ccafd4967fa95d40e.zip |
increase core version and add dav version number
-rw-r--r-- | apps/dav/appinfo/info.xml | 1 | ||||
-rw-r--r-- | version.php | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/dav/appinfo/info.xml b/apps/dav/appinfo/info.xml index c80af15a29b..38878ec27f2 100644 --- a/apps/dav/appinfo/info.xml +++ b/apps/dav/appinfo/info.xml @@ -5,6 +5,7 @@ <description>ownCloud WebDAV endpoint</description> <licence>AGPL</licence> <author>owncloud.org</author> + <version>0.1</version> <requiremin>9.0</requiremin> <shipped>true</shipped> <standalone/> diff --git a/version.php b/version.php index cc5a18b1cb3..008bb7dafc6 100644 --- a/version.php +++ b/version.php @@ -25,7 +25,7 @@ // We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel // when updating major/minor version number. -$OC_Version = array(9, 0, 0, 0); +$OC_Version = array(9, 0, 0, 1); // The human readable string $OC_VersionString = '9.0 pre alpha'; |