Skip to content

Commit

Permalink
Merge pull request #2385 from danielabutano/dev
Browse files Browse the repository at this point in the history
Intermine 5.0.3
  • Loading branch information
Daniela Butano committed Jun 30, 2021
2 parents 4f2fafe + d1568bd commit b07c55d
Show file tree
Hide file tree
Showing 17 changed files with 32 additions and 26 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -3,7 +3,7 @@ InterMine

Master: [![InterMine CI](https://github.com/intermine/intermine/workflows/InterMine%20CI/badge.svg?branch=master)](https://github.com/intermine/intermine/actions?query=workflow%3A%22InterMine+CI%22)
Dev: [![InterMine CI](https://github.com/intermine/intermine/workflows/InterMine%20CI/badge.svg?branch=dev)](https://github.com/intermine/intermine/actions?query=workflow%3A%22InterMine+CI%22)
[![Version](http://img.shields.io/badge/version-5.0.2-blue.svg?style=flat)](https://github.com/intermine/intermine/releases)
[![Version](http://img.shields.io/badge/version-5.0.3-blue.svg?style=flat)](https://github.com/intermine/intermine/releases)
[![License](http://img.shields.io/badge/license-LGPL_2.1-blue.svg?style=flat)](https://github.com/intermine/intermine/blob/master/LICENSE)
[![Research software impact](http://depsy.org/api/package/pypi/intermine/badge.svg)](http://depsy.org/package/python/intermine)
[![Conda](https://anaconda.org/anaconda/conda-build/badges/installer/conda.svg)](https://anaconda.org/bioconda/intermine)
Expand Down
6 changes: 6 additions & 0 deletions RELEASE_NOTES
Expand Up @@ -7,6 +7,12 @@
* information or http://www.gnu.org/copyleft/lesser.html.
*
*/
InterMine 5.0.3 (June 2021)

#2375 - Update interpro_keys.properties
#2376 - Update interpro-go_keys.properties
#2384 - Enrichment widget not working when changing background population

InterMine 5.0.2 (May 2021)

#2335 - BioGrid data change causing loader to throw Exception
Expand Down
2 changes: 1 addition & 1 deletion bio/build.gradle
@@ -1,6 +1,6 @@
subprojects {
group = 'org.intermine'
version = '5.0.2'
version = '5.0.3'

apply plugin: "java"
apply plugin: "maven"
Expand Down
8 changes: 4 additions & 4 deletions bio/gradle.properties
@@ -1,11 +1,11 @@
systemProp.imVersion=5.0.2
systemProp.bioVersion=5.0.2
systemProp.imVersion=5.0.3
systemProp.bioVersion=5.0.3

# some unit tests need additional classes that aren't in the core model.
# we use flymine's model. don't touch!
systemProp.flymineVersion=[4.0, )
systemProp.flymineVersion=4.0.0

systemProp.javax.xml.stream.XMLOutputFactory=com.sun.xml.internal.stream.XMLOutputFactoryImpl
#don't touch. to install locally without the 'unknown property'error
ossrhUsername=
ossrhPassword=
ossrhPassword=
2 changes: 1 addition & 1 deletion bio/postprocess-test/build.gradle
Expand Up @@ -17,7 +17,7 @@ ext {

subprojects {
group = 'org.intermine'
version = '5.0.2'
version = '5.0.3'

apply plugin: 'java'
apply plugin: 'maven'
Expand Down
6 changes: 3 additions & 3 deletions bio/postprocess-test/gradle.properties
@@ -1,6 +1,6 @@
systemProp.imVersion=5.0.2
systemProp.bioVersion=5.0.2
systemProp.imVersion=5.0.3
systemProp.bioVersion=5.0.3

systemProp.flymineVersion=[4.0, )
systemProp.flymineVersion=4.0.0

systemProp.javax.xml.stream.XMLOutputFactory = com.sun.xml.internal.stream.XMLOutputFactoryImpl
2 changes: 1 addition & 1 deletion bio/postprocess/build.gradle
Expand Up @@ -16,7 +16,7 @@ ext {

subprojects {
group = 'org.intermine'
version = '5.0.2'
version = '5.0.3'

apply plugin: 'java'
apply plugin: 'maven'
Expand Down
4 changes: 2 additions & 2 deletions bio/postprocess/gradle.properties
@@ -1,5 +1,5 @@
systemProp.imVersion=5.0.2
systemProp.bioVersion=5.0.2
systemProp.imVersion=5.0.3
systemProp.bioVersion=5.0.3

systemProp.javax.xml.stream.XMLOutputFactory = com.sun.xml.internal.stream.XMLOutputFactoryImpl

Expand Down
2 changes: 1 addition & 1 deletion bio/sources/build.gradle
Expand Up @@ -16,7 +16,7 @@ ext {

subprojects {
group = 'org.intermine'
version = '5.0.2'
version = '5.0.3'

apply plugin: 'java'
apply plugin: 'maven'
Expand Down
6 changes: 3 additions & 3 deletions bio/sources/gradle.properties
@@ -1,9 +1,9 @@
systemProp.imVersion=5.0.2
systemProp.bioVersion=5.0.2
systemProp.imVersion=5.0.3
systemProp.bioVersion=5.0.3

# some unit tests need additional classes that aren't in the core model.
# we use flymine's model. don't touch!
systemProp.flymineVersion=[4.0, )
systemProp.flymineVersion=4.0.0

systemProp.javax.xml.stream.XMLOutputFactory = com.sun.xml.internal.stream.XMLOutputFactoryImpl

Expand Down
2 changes: 1 addition & 1 deletion intermine/build.gradle
@@ -1,6 +1,6 @@
subprojects {
group = 'org.intermine'
version '5.0.2'
version '5.0.3'

apply plugin: "java"
apply plugin: "maven"
Expand Down
4 changes: 2 additions & 2 deletions intermine/gradle.properties
@@ -1,5 +1,5 @@
systemProp.imVersion=5.0.2
systemProp.bioVersion=5.0.2
systemProp.imVersion=5.0.3
systemProp.bioVersion=5.0.3

systemProp.javax.xml.stream.XMLOutputFactory = com.sun.xml.internal.stream.XMLOutputFactoryImpl

Expand Down
Expand Up @@ -225,7 +225,7 @@ private Constants() {
/**
* Current version of the InterMine code
*/
public static final String INTERMINE_VERSION = "5.0.2";
public static final String INTERMINE_VERSION = "5.0.3";

/**
* Key for a Map from class name to Boolean.TRUE for all classes in the model that do not have
Expand Down
Expand Up @@ -137,7 +137,7 @@ protected void execute() throws Exception {
}
addOutputAttribute("message", String.format(BAD_POPULATION_MSG, imBag.getType()));
return;
} else if (!verifyPopulationContainsIds(ids, populationBag)) {
} else if (ids != null && !verifyPopulationContainsIds(ids, populationBag)) {
if (input.shouldSavePopulation()) {
deleteReferencePopulationPreference(input);
}
Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'maven'
apply plugin: 'signing'

group 'org.intermine'
version '5.0.2'
version '5.0.3'

sourceCompatibility = 1.8

Expand Down
4 changes: 2 additions & 2 deletions plugin/gradle.properties
@@ -1,5 +1,5 @@
systemProp.imVersion=5.0.2
systemProp.bioVersion=5.0.2
systemProp.imVersion=5.0.3
systemProp.bioVersion=5.0.3

systemProp.javax.xml.stream.XMLOutputFactory = com.sun.xml.internal.stream.XMLOutputFactoryImpl

Expand Down
2 changes: 1 addition & 1 deletion testmine/build.gradle
@@ -1,5 +1,5 @@
ext {
imVersion = "5.0.2"
imVersion = "5.0.3"
taskGroup = "InterMine"
minePropertyFileName = "testmodel.properties"
minePropertyFile = "${System.env.HOME}/.intermine/$minePropertyFileName"
Expand Down

0 comments on commit b07c55d

Please sign in to comment.