From commits-return-55285-archive-asf-public=cust-asf.ponee.io@activemq.apache.org Fri Mar 1 15:43:44 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 6D93C180647 for ; Fri, 1 Mar 2019 16:43:44 +0100 (CET) Received: (qmail 41107 invoked by uid 500); 1 Mar 2019 15:43:43 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 41098 invoked by uid 99); 1 Mar 2019 15:43:43 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Mar 2019 15:43:43 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 0414A82E8A; Fri, 1 Mar 2019 15:43:43 +0000 (UTC) Date: Fri, 01 Mar 2019 15:43:42 +0000 To: "commits@activemq.apache.org" Subject: [activemq-artemis-native] branch master updated: NO-JIRA RELEASE update MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155145502297.24414.1504146876429157607@gitbox.apache.org> From: clebertsuconic@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: activemq-artemis-native X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: bec1c63beacd0d0b75cd576ca13d84b7293b29d2 X-Git-Newrev: 94d7ec309afde3d2c4a5d27db5a020d63f67aba5 X-Git-Rev: 94d7ec309afde3d2c4a5d27db5a020d63f67aba5 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. clebertsuconic pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/activemq-artemis-native.git The following commit(s) were added to refs/heads/master by this push: new 94d7ec3 NO-JIRA RELEASE update 94d7ec3 is described below commit 94d7ec309afde3d2c4a5d27db5a020d63f67aba5 Author: Clebert Suconic AuthorDate: Fri Mar 1 10:43:39 2019 -0500 NO-JIRA RELEASE update --- RELEASING.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index b591163..53e14ae 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -11,10 +11,6 @@ You will of course need docker installed and running for this: MyComputer activemq-artemis-native myuser$ ./scripts/compile-using-docker.sh ``` -* Increase LibaioContext.EXPECTED_NATIVE_VERSION - -This is to make sure when the system loads a native, it is the same .so generated at the release time, avoiding production issues on mismatched .so. - * Build the release locally: mvn clean install -Prelease ## Key to Sign the Release @@ -62,13 +58,13 @@ This should be the same `user.email` and `user.name` you use on your main reposi You will have to use this following maven command to perform the release: ```sh -mvn clean release:prepare -DautoVersionSubmodules=true -Prelease +mvn clean release:prepare -DautoVersionSubmodules=true -Prelease -Pdocker ``` You could optionally set `pushChanges=false` so the version commit and tag won't be pushed upstream (you would have to do it yourself): ```sh -mvn clean release:prepare -DautoVersionSubmodules=true -DpushChanges=false -Prelease +mvn clean release:prepare -DautoVersionSubmodules=true -DpushChanges=false -Prelease -Pdocker ``` When prompted make sure the next is a major release. Example: @@ -99,7 +95,7 @@ git push upstream To upload it to nexus, perform this command: ```sh -mvn release:perform -Prelease +mvn release:perform -Prelease -Pdocker ``` Note: this can take quite awhile depending on the speed for your Internet connection.