Skip to content

Commit

Permalink
[release 20.10.0] Update timestamp and build numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
pditommaso committed Nov 1, 2020
1 parent 1489a88 commit 539a22b
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 13 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ jobs:
NXF_GITLAB_ACCESS_TOKEN: ${{ secrets.NXF_GITLAB_ACCESS_TOKEN }}

- name: Integration
if: "matrix.java_version > 8 && (github.ref == 'master' || github.ref == 'testing')"
run: make install && ./integration-tests.sh
env:
TEST_JDK: ${{ matrix.java_version }}
Expand All @@ -68,14 +67,14 @@ jobs:
GOOGLE_SECRET: ${{ secrets.GOOGLE_SECRET }}

- name: Setup Java 8
if: "matrix.java_version != 8 && (github.ref == 'master' || github.ref == 'testing')"
if: "matrix.java_version != 8 && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/testing')"
uses: actions/setup-java@v1
with:
java-version: 8
architecture: x64

- name: Integration vs Java 8
if: "matrix.java_version != 8 && (github.ref == 'master' || github.ref == 'testing')"
if: "matrix.java_version != 8 && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/testing')"
run: ./integration-tests.sh
env:
TEST_JDK: 8
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.09.1-edge
20.10.0
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '20.09'
version = '20.10'
# The full version, including alpha/beta/rc tags.
release = '20.09.1-edge'
release = '20.10.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 3 additions & 3 deletions modules/nextflow/src/main/groovy/nextflow/Const.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@ class Const {
/**
* The application version
*/
static public final String APP_VER = "20.09.1-edge"
static public final String APP_VER = "20.10.0"

/**
* The app build time as linux/unix timestamp
*/
static public final long APP_TIMESTAMP = 1602753646780
static public final long APP_TIMESTAMP = 1604244520074

/**
* The app build number
*/
static public final int APP_BUILDNUM = 5428
static public final int APP_BUILDNUM = 5431


/**
Expand Down
2 changes: 1 addition & 1 deletion nextflow
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# limitations under the License.

[[ "$NXF_DEBUG" == 'x' ]] && set -x
NXF_VER=${NXF_VER:-'20.09.1-edge'}
NXF_VER=${NXF_VER:-'20.10.0'}
NXF_ORG=${NXF_ORG:-'nextflow-io'}
NXF_HOME=${NXF_HOME:-$HOME/.nextflow}
NXF_PROT=${NXF_PROT:-'https'}
Expand Down
2 changes: 1 addition & 1 deletion nextflow.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e89d9ae171cbebb166aad3f86c81d26a
53170323f8a3b42afe77916cbed2eaa4
2 changes: 1 addition & 1 deletion nextflow.sha1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12b95ea627dbe3d21b8204b6213c47df18394f37
4966dd1130017cb76ee30a960995f17d2e452d97
2 changes: 1 addition & 1 deletion nextflow.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f9d5ab5f108de0ac25141e5914a7b5ea316d6e6afcf34f230975a1c7a262d9bd
54f76c83cbabe8ec68d6a878dcf921e647284499f4ae917356e594d873cb78dd

0 comments on commit 539a22b

Please sign in to comment.