diff --git a/docs/source/conf.py b/docs/source/conf.py
index 4e7bfb1b..68b6f5ae 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -24,9 +24,9 @@ copyright = '2019, Haiping Chen'
author = 'Haiping Chen'
# The short X.Y version
-version = '0.0.1'
+version = '0.6.0'
# The full version, including alpha/beta/rc tags
-release = '0.0.1'
+release = '0.6.0'
# -- General configuration ---------------------------------------------------
diff --git a/src/TensorFlowNET.Core/Sessions/BaseSession.cs b/src/TensorFlowNET.Core/Sessions/BaseSession.cs
index 530a0107..07c4024a 100644
--- a/src/TensorFlowNET.Core/Sessions/BaseSession.cs
+++ b/src/TensorFlowNET.Core/Sessions/BaseSession.cs
@@ -245,6 +245,8 @@ namespace Tensorflow
throw new NotImplementedException("can't fetch output");
}
+ tensor.Dispose();
+
return nd;
}
diff --git a/src/TensorFlowNET.Core/TensorFlowNET.Core.csproj b/src/TensorFlowNET.Core/TensorFlowNET.Core.csproj
index 30ce8513..a4188e15 100644
--- a/src/TensorFlowNET.Core/TensorFlowNET.Core.csproj
+++ b/src/TensorFlowNET.Core/TensorFlowNET.Core.csproj
@@ -4,7 +4,7 @@
netstandard2.0
TensorFlow.NET
Tensorflow
- 0.6.0
+ 0.5.2
Haiping Chen
SciSharp STACK
false
@@ -14,16 +14,14 @@
https://github.com/SciSharp
https://avatars3.githubusercontent.com/u/44989469?s=200&v=4
TensorFlow, NumSharp, SciSharp, MachineLearning, TensorFlow.NET, C#
- Google's TensorFlow binding in .NET Standard.
+ Google's TensorFlow full binding in .NET Standard.
Docs: https://tensorflownet.readthedocs.io
- 0.6.0.0
+ 0.5.2.0
Changes since v0.5:
-Added K-means Clustering.
Added Nearest Neighbor.
-Added a lot of APIs to build neural networks model.
-Bug fix.
+Bug memory leak issue when allocating Tensor.
7.2
- 0.6.0.0
+ 0.5.2.0
diff --git a/test/TensorFlowNET.Examples/TensorFlowNET.Examples.csproj b/test/TensorFlowNET.Examples/TensorFlowNET.Examples.csproj
index 59fc1fd0..912dc91c 100644
--- a/test/TensorFlowNET.Examples/TensorFlowNET.Examples.csproj
+++ b/test/TensorFlowNET.Examples/TensorFlowNET.Examples.csproj
@@ -3,6 +3,7 @@
Exe
netcoreapp2.2
+ false