Skip to content

Commit a046a66

Browse files
Update version number and release notes.
1 parent f9866eb commit a046a66

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

RELEASENOTES.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
Releases, starting with 9/2/2021, are listed with the most recent release at the top.
44

5+
6+
# NuGet Version 0.104.0
7+
8+
This is a big change in implementation, but not as big in API surface area. Many of the builtin modules, but not all, were re-implemented in managed code calling into native code via the functional APIs. This has several advantages:
9+
10+
1. Align with the Pytorch implementations.
11+
2. More easily expose module attributes as properties as Pytorch does.
12+
3. In some cases, avoid native code altogether.
13+
4. The builtin modules can serve as "best practice" examples for custom module authors.
14+
15+
__Breaking Changes__:
16+
17+
The names of several arguments have been changed to align better with Pytorch naming. This may break code that passes such arguments by name, but will be caught at compile time.
18+
19+
__Issues fixed__:
20+
21+
#1397 Look into whether parameter creation from a tensor leads to incorrect dispose scope statistics. This bug was discovered during testing of the PR.<br/>
22+
#1210 Attribute omissions.<br/>
23+
524
# NuGet Version 0.103.1
625

726
__Breaking Changes__:

build/BranchInfo.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project>
22
<PropertyGroup>
33
<MajorVersion>0</MajorVersion>
4-
<MinorVersion>103</MinorVersion>
5-
<PatchVersion>1</PatchVersion>
6-
<PreviousPackageVersion>0.103.0</PreviousPackageVersion>
4+
<MinorVersion>104</MinorVersion>
5+
<PatchVersion>0</PatchVersion>
6+
<PreviousPackageVersion>0.103.1</PreviousPackageVersion>
77
</PropertyGroup>
88
</Project>

0 commit comments

Comments
 (0)