From 775c8cc06416e80ff0ca0652b7b3aa69aee42c6b Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Sun, 19 Jul 2015 02:04:52 +0900 Subject: [PATCH] Update release operation --- doc/release.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/doc/release.md b/doc/release.md index 186f25101..b515c801d 100644 --- a/doc/release.md +++ b/doc/release.md @@ -6,6 +6,17 @@ Update version number Note to update version number in files below: +### project/build.scala + +```scala +object MyBuild extends Build { + val Organization = "gitbucket" + val Name = "gitbucket" + val Version = "3.3.0" // <---- update version!! + val ScalaVersion = "2.11.6" + val ScalatraVersion = "2.3.1" +``` + ### src/main/scala/gitbucket/core/servlet/AutoUpdate.scala ```scala @@ -19,13 +30,6 @@ object AutoUpdate { new Version(3, 2), ``` -### env.sh - -```bash -#!/bin/sh -export GITBUCKET_VERSION=3.3.0 # <---- update here!! -``` - Generate release files --------