From 7fca378df6e116192dbe8fd51c2c581dd6bd40a7 Mon Sep 17 00:00:00 2001 From: Da-Cheng Juan Date: Wed, 18 Sep 2019 11:16:03 -0700 Subject: [PATCH] Increase the release number to 1.0.1. This new release exports 'make_graph_reg_config'. PiperOrigin-RevId: 269848985 --- README.md | 4 ++++ RELEASE.md | 22 +++++++++++++++++++++- setup.py | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3de1d9d..7e46e21 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,10 @@ for tracking requests and bugs. For questions, please direct them to [Stack Over ["nsl"](https://stackoverflow.com/questions/tagged/nsl) tag. +## Release Notes + +Please see the [release notes](RELEASE.md) for detailed version updates. + ## References [[1] T. Bui, S. Ravi and V. Ramavajjala. "Neural Graph Learning: Training Neural Networks Using Graphs." WSDM 2018](https://ai.google/research/pubs/pub46568.pdf) diff --git a/RELEASE.md b/RELEASE.md index 8923069..030f2af 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,23 @@ +# Release 1.0.1 + +## Major Features and Improvements + +* Adds 'make_graph_reg_config', a new API to help construct a `nsl.configs.GraphRegConfig` object + +* Updates the package description on PyPI + +## Bug Fixes and Other Changes + +* Fixes metric computation with `Metric` objects in `AdversarialRegularization` + +* Fixes typos in documentation and notebooks + +## Thanks to our Contributors + +This release contains contributions from many people at Google, as well as: + +@joaogui1, @aspratyush. + # Release 1.0.0 -Initial release of Neural Structured Learning in TensorFlow. +* Initial release of Neural Structured Learning in TensorFlow diff --git a/setup.py b/setup.py index 5d7b3e0..add41ce 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ setuptools.setup( name="neural-structured-learning", - version="1.0.0", + version="1.0.1", author="Google LLC", description="Neural Structured Learning is an open-source TensorFlow " "framework to train neural networks with structured signals",