diff --git a/README.mkdn b/README.mkdn index 7f265ce2..cb6e3a34 100644 --- a/README.mkdn +++ b/README.mkdn @@ -11,7 +11,7 @@ You can do this by using these commands: (Go to repo you are patching, make your changes and commit) cmgerrit - repo start cm-13.0 . + repo start cm-14.0 . (Make your changes and commit) repo upload . Note: "." meaning current directory @@ -31,7 +31,7 @@ familiar with [Repo](https://source.android.com/source/using-repo.html) and [Ver To initialize your local repository using the CyanogenMod trees, use a command like this: - repo init -u git://github.com/CyanogenMod/android.git -b cm-13.0 + repo init -u git://github.com/CyanogenMod/android.git -b cm-14.0 Then to sync up: diff --git a/config/common.mk b/config/common.mk index ea5dcaaa..9e788a9a 100644 --- a/config/common.mk +++ b/config/common.mk @@ -242,9 +242,9 @@ PRODUCT_PROPERTY_OVERRIDES += \ DEVICE_PACKAGE_OVERLAYS += vendor/cm/overlay/common -PRODUCT_VERSION_MAJOR = 13 +PRODUCT_VERSION_MAJOR = 14 PRODUCT_VERSION_MINOR = 0 -PRODUCT_VERSION_MAINTENANCE := 1 +PRODUCT_VERSION_MAINTENANCE := 0 ifeq ($(TARGET_VENDOR_SHOW_MAINTENANCE_VERSION),true) CM_VERSION_MAINTENANCE := $(PRODUCT_VERSION_MAINTENANCE) diff --git a/vendorsetup.sh b/vendorsetup.sh index 642da701..3d95ac88 100644 --- a/vendorsetup.sh +++ b/vendorsetup.sh @@ -1,4 +1,4 @@ -for combo in $(curl -s https://raw.githubusercontent.com/CyanogenMod/hudson/master/cm-build-targets | sed -e 's/#.*$//' | grep cm-13.0 | awk '{printf "cm_%s-%s\n", $1, $2}') +for combo in $(curl -s https://raw.githubusercontent.com/CyanogenMod/hudson/master/cm-build-targets | sed -e 's/#.*$//' | grep cm-14.0 | awk '{printf "cm_%s-%s\n", $1, $2}') do add_lunch_combo $combo done