Skip to content

Commit 4c6063d

Browse files
committed
Update version number.
1 parent 7449fa5 commit 4c6063d

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

src/TensorFlowNET.Core/Tensorflow.Binding.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<AssemblyName>Tensorflow.Binding</AssemblyName>
66
<RootNamespace>Tensorflow</RootNamespace>
77
<TargetTensorFlow>2.10.0</TargetTensorFlow>
8-
<Version>0.100.5</Version>
8+
<Version>0.110.0</Version>
99
<LangVersion>10.0</LangVersion>
1010
<Nullable>enable</Nullable>
1111
<Authors>Haiping Chen, Meinrad Recheis, Eli Belash</Authors>
@@ -20,7 +20,7 @@
2020
<Description>Google's TensorFlow full binding in .NET Standard.
2121
Building, training and infering deep learning models.
2222
https://tensorflownet.readthedocs.io</Description>
23-
<AssemblyVersion>0.100.5.0</AssemblyVersion>
23+
<AssemblyVersion>0.110.0.0</AssemblyVersion>
2424
<PackageReleaseNotes>
2525
tf.net 0.100.x and above are based on tensorflow native 2.10.0
2626

@@ -38,7 +38,7 @@ https://tensorflownet.readthedocs.io</Description>
3838
tf.net 0.7x.x aligns with TensorFlow v2.7.x native library.
3939
tf.net 0.10x.x aligns with TensorFlow v2.10.x native library.
4040
</PackageReleaseNotes>
41-
<FileVersion>0.100.5.0</FileVersion>
41+
<FileVersion>0.110.0.0</FileVersion>
4242
<PackageLicenseFile>LICENSE</PackageLicenseFile>
4343
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
4444
<PackageOutputPath>packages</PackageOutputPath>
@@ -110,13 +110,13 @@ https://tensorflownet.readthedocs.io</Description>
110110
<ItemGroup>
111111
<PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.148" />
112112
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
113-
<PackageReference Include="OneOf" Version="3.0.223" />
113+
<PackageReference Include="OneOf" Version="3.0.255" />
114114
<PackageReference Include="Protobuf.Text" Version="0.7.1" />
115115
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
116116
</ItemGroup>
117117

118118
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
119119
<PackageReference Include="IsExternalInit" Version="1.0.3" PrivateAssets="all" />
120-
<PackageReference Include="System.Memory" Version="4.5.4" PrivateAssets="all" />
120+
<PackageReference Include="System.Memory" Version="4.5.5" PrivateAssets="all" />
121121
</ItemGroup>
122122
</Project>

src/TensorFlowNET.Keras/Tensorflow.Keras.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Nullable>enable</Nullable>
88
<RootNamespace>Tensorflow.Keras</RootNamespace>
99
<Platforms>AnyCPU;x64</Platforms>
10-
<Version>0.10.5</Version>
10+
<Version>0.11.0</Version>
1111
<Authors>Haiping Chen</Authors>
1212
<Product>Keras for .NET</Product>
1313
<Copyright>Apache 2.0, Haiping Chen 2023</Copyright>
@@ -38,8 +38,8 @@ Keras is an API designed for human beings, not machines. Keras follows best prac
3838
<RepositoryType>Git</RepositoryType>
3939
<SignAssembly>true</SignAssembly>
4040
<AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
41-
<AssemblyVersion>0.10.5.0</AssemblyVersion>
42-
<FileVersion>0.10.5.0</FileVersion>
41+
<AssemblyVersion>0.11.0.0</AssemblyVersion>
42+
<FileVersion>0.11.0.0</FileVersion>
4343
<PackageLicenseFile>LICENSE</PackageLicenseFile>
4444
<Configurations>Debug;Release;GPU</Configurations>
4545
</PropertyGroup>
@@ -71,7 +71,7 @@ Keras is an API designed for human beings, not machines. Keras follows best prac
7171
</PropertyGroup>
7272

7373
<ItemGroup>
74-
<PackageReference Include="HDF5-CSharp" Version="1.16.3" />
74+
<PackageReference Include="HDF5-CSharp" Version="1.17.0" />
7575
<PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.148" />
7676
<PackageReference Include="SharpZipLib" Version="1.4.2" />
7777
</ItemGroup>

test/TensorflowNET.Hub.Unittest/KerasLayerTest.cs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ namespace Tensorflow.Hub.Unittest
66
[TestClass]
77
public class KerasLayerTest
88
{
9+
[Ignore]
910
[TestMethod]
1011
public void SmallBert()
1112
{

0 commit comments

Comments
 (0)