Skip to content

Commit

Permalink
Release 0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
timpitman committed Mar 31, 2020
2 parents 94d28ef + 4b5c2b4 commit 55a4ba3
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [0.11.1](https://github.com/stellargraph/stellargraph/tree/v0.11.1)

[Full Changelog](https://github.com/stellargraph/stellargraph/compare/v0.11.0...v0.11.1)

This bugfix release contains the same code as 0.11.0, and just fixes the metadata in the Anaconda package so that it can be installed successfully.

### Bug fixes and other changes

- The [Conda package for StellarGraph](https://anaconda.org/stellargraph/stellargraph) has been updated to require TensorFlow 2.1, as TensorFlow 2.0 is no longer supported. As a result, StellarGraph will currently install via Conda on Linux and Windows - Mac support is waiting on the [Tensorflow 2.1 osx-64 release to Conda](https://github.com/ContinuumIO/anaconda-issues/issues/11697). [\#1165](https://github.com/stellargraph/stellargraph/pull/1165)

## [0.11.0](https://github.com/stellargraph/stellargraph/tree/v0.11.0)

[Full Changelog](https://github.com/stellargraph/stellargraph/compare/v0.10.0...v0.11.0)
Expand Down
2 changes: 2 additions & 0 deletions docker/stellargraph-neo4j/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ FROM neo4j:3.5

SHELL ["/bin/bash", "-euo", "pipefail", "-c"]

USER neo4j

ENV APOC_VERSION="3.5.0.9" APOC_SHA="b4b1a8f8940ad250c17b45296459afcfff2eb1beee18b8c8a394e2b5a434183b924b34cb5b04fea1a371fbfb87a286228bd4ae814829e0ef99f9e190a764fa1d"
RUN echo "--- downloading apoc jar" && \
wget --no-verbose "https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/${APOC_VERSION}/apoc-${APOC_VERSION}-all.jar" --directory-prefix plugins/ && \
Expand Down
12 changes: 8 additions & 4 deletions meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
package:
name: "stellargraph"
version: "0.11.0"
version: "0.11.1"

source:
path: .
Expand All @@ -23,7 +23,7 @@ requirements:
- python
- scikit-learn >=0.20
- scipy >=1.1.0
- tensorflow 1.14.*
- tensorflow >=2.1.0
- ipython
- ipykernel
run:
Expand All @@ -35,19 +35,23 @@ requirements:
- python
- scikit-learn >=0.20
- scipy >=1.1.0
- tensorflow 1.14.*
- tensorflow >=2.1.0
- ipython
- ipykernel

test:
imports:
- stellargraph
- stellargraph.connector
- stellargraph.connector.neo4j
- stellargraph.core
- stellargraph.data
- stellargraph.datasets
- stellargraph.interpretability
- stellargraph.interpretability.saliency_maps
- stellargraph.layer
- stellargraph.mapper
- stellargraph.utils
- stellargraph.utils.saliency_maps

about:
home: "https://github.com/stellargraph/stellargraph"
Expand Down
2 changes: 1 addition & 1 deletion stellargraph/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# limitations under the License.

# Global version information
__version__ = "0.11.0"
__version__ = "0.11.1"

0 comments on commit 55a4ba3

Please sign in to comment.