Skip to content

Commit ebc06e4

Browse files
committed
set version to 0.4.0
1 parent 17a69a0 commit ebc06e4

File tree

10 files changed

+37
-29
lines changed

10 files changed

+37
-29
lines changed

RELEASE_NOTES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
#### 0.3.3 November 04 2016
1+
#### 0.4.0 November 25 2016
22
- .NET Standard 1.3 support.
33
- Libraries are strong-named by default.
44
- Redis codec.
5+
- Protocol Buffers 2 and 3 codecs.
6+
- Socket Datagram Channel.
7+
- Base64 encoder and decoder.
8+
- STEE uses ConcurrentQueue by default (queue impl is pluggable now).
59

610
#### 0.3.2 June 22 2016
711
- Better API alignment with final version of netty 4.1 (#125).

src/DotNetty.Buffers/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{
1+
{
22
"name": "DotNetty.Buffers",
3-
"version": "0.3.3",
3+
"version": "0.4.0",
44
"title": "DotNetty: buffer management",
55
"description": "Buffer management in DotNetty",
66
"language": "en-US",
@@ -21,14 +21,14 @@
2121
"keyFile": "../../DotNetty.snk"
2222
},
2323
"dependencies": {
24-
"NETStandard.Library": "1.6.0",
2524
"DotNetty.Common": {
2625
"target": "project"
2726
}
2827
},
2928
"frameworks": {
3029
"netstandard1.3": {
3130
"dependencies": {
31+
"NETStandard.Library": "1.6.0",
3232
"System.Diagnostics.Contracts": "4.0.1"
3333
}
3434
},

src/DotNetty.Codecs.Mqtt/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{
1+
{
22
"name": "DotNetty.Codecs.Mqtt",
3-
"version": "0.3.3",
3+
"version": "0.4.0",
44
"title": "DotNetty: MQTT codec",
55
"description": "MQTT codec for DotNetty",
66
"language": "en-US",
@@ -21,7 +21,6 @@
2121
"keyFile": "../../DotNetty.snk"
2222
},
2323
"dependencies": {
24-
"NETStandard.Library": "1.6.0",
2524
"DotNetty.Common": {
2625
"target": "project"
2726
},
@@ -38,6 +37,7 @@
3837
"frameworks": {
3938
"netstandard1.3": {
4039
"dependencies": {
40+
"NETStandard.Library": "1.6.0",
4141
"System.Diagnostics.Contracts": "4.0.1"
4242
}
4343
},

src/DotNetty.Codecs.Protobuf/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{
1+
{
22
"name": "DotNetty.Codecs.Protobuf",
3-
"version": "0.3.3",
3+
"version": "0.4.0",
44
"title": "DotNetty: Protobuf Proto3 codec",
55
"description": "Protobuf Proto3 codec for DotNetty",
66
"language": "en-US",
@@ -21,7 +21,6 @@
2121
"keyFile": "../../DotNetty.snk"
2222
},
2323
"dependencies": {
24-
"NETStandard.Library": "1.6.0",
2524
"DotNetty.Common": {
2625
"target": "project"
2726
},
@@ -39,6 +38,7 @@
3938
"frameworks": {
4039
"netstandard1.3": {
4140
"dependencies": {
41+
"NETStandard.Library": "1.6.0",
4242
"System.Diagnostics.Contracts": "4.0.1"
4343
}
4444
},

src/DotNetty.Codecs.ProtocolBuffers/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{
1+
{
22
"name": "DotNetty.Codecs.ProtocolBuffers",
3-
"version": "0.3.3",
3+
"version": "0.4.0",
44
"title": "DotNetty: ProtocolBuffers Proto2 codec",
55
"description": "ProtocolBuffers Proto2 codec for DotNetty",
66
"language": "en-US",
@@ -21,7 +21,6 @@
2121
"keyFile": "../../DotNetty.snk"
2222
},
2323
"dependencies": {
24-
"NETStandard.Library": "1.6.0",
2524
"DotNetty.Common": {
2625
"target": "project"
2726
},
@@ -39,6 +38,7 @@
3938
"frameworks": {
4039
"netstandard1.3": {
4140
"dependencies": {
41+
"NETStandard.Library": "1.6.0",
4242
"Microsoft.NETCore.Portable.Compatibility": "1.0.1",
4343
"System.Diagnostics.Contracts": "4.0.1"
4444
},

src/DotNetty.Codecs.Redis/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{
1+
{
22
"name": "DotNetty.Codecs.Redis",
3-
"version": "0.3.3",
3+
"version": "0.4.0",
44
"title": "DotNetty: Redis codec",
55
"description": "Redis codec for DotNetty",
66
"language": "en-US",
@@ -21,7 +21,6 @@
2121
"keyFile": "../../DotNetty.snk"
2222
},
2323
"dependencies": {
24-
"NETStandard.Library": "1.6.0",
2524
"DotNetty.Common": {
2625
"target": "project"
2726
},
@@ -38,6 +37,7 @@
3837
"frameworks": {
3938
"netstandard1.3": {
4039
"dependencies": {
40+
"NETStandard.Library": "1.6.0",
4141
"System.Diagnostics.Contracts": "4.0.1"
4242
}
4343
},

src/DotNetty.Codecs/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{
1+
{
22
"name": "DotNetty.Codecs",
3-
"version": "0.3.3",
3+
"version": "0.4.0",
44
"title": "DotNetty: codecs",
55
"description": "General purpose codecs for DotNetty",
66
"language": "en-US",
@@ -22,7 +22,6 @@
2222
"keyFile": "../../DotNetty.snk"
2323
},
2424
"dependencies": {
25-
"NETStandard.Library": "1.6.0",
2625
"DotNetty.Common": {
2726
"target": "project"
2827
},
@@ -36,6 +35,7 @@
3635
"frameworks": {
3736
"netstandard1.3": {
3837
"dependencies": {
38+
"NETStandard.Library": "1.6.0",
3939
"System.Diagnostics.Contracts": "4.0.1"
4040
}
4141
},

src/DotNetty.Common/project.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{
1+
{
22
"name": "DotNetty.Common",
3-
"version": "0.3.3",
3+
"version": "0.4.0",
44
"title": "DotNetty: common routines",
55
"description": "DotNetty common routines",
66
"language": "en-US",
@@ -21,17 +21,21 @@
2121
"keyFile": "../../DotNetty.snk"
2222
},
2323
"dependencies": {
24-
"NETStandard.Library": "1.6.0",
2524
"Microsoft.Extensions.Logging": "1.0.0"
2625
},
2726
"frameworks": {
2827
"netstandard1.3": {
2928
"dependencies": {
29+
"NETStandard.Library": "1.6.0",
3030
"System.Threading.Thread": "4.0.0",
3131
"System.Diagnostics.Contracts": "4.0.1",
3232
"System.Net.NetworkInformation": "4.1.0"
3333
}
3434
},
35-
"net451": {}
35+
"net451": {
36+
"frameworkAssemblies": {
37+
"System.Runtime": { "type": "build" }
38+
}
39+
}
3640
}
3741
}

src/DotNetty.Handlers/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{
1+
{
22
"name": "DotNetty.Handlers",
3-
"version": "0.3.3",
3+
"version": "0.4.0",
44
"title": "DotNetty: handlers",
55
"description": "Application handlers for DotNetty",
66
"language": "en-US",
@@ -21,7 +21,6 @@
2121
"keyFile": "../../DotNetty.snk"
2222
},
2323
"dependencies": {
24-
"NETStandard.Library": "1.6.0",
2524
"DotNetty.Common": {
2625
"target": "project"
2726
},
@@ -38,6 +37,7 @@
3837
"frameworks": {
3938
"netstandard1.3": {
4039
"dependencies": {
40+
"NETStandard.Library": "1.6.0",
4141
"System.Net.Security": "4.0.0",
4242
"System.Diagnostics.Contracts": "4.0.1"
4343
}

src/DotNetty.Transport/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{
1+
{
22
"name": "DotNetty.Transport",
3-
"version": "0.3.3",
3+
"version": "0.4.0",
44
"title": "DotNetty: transport model",
55
"description": "Transport model in DotNetty",
66
"language": "en-US",
@@ -21,7 +21,6 @@
2121
"keyFile": "../../DotNetty.snk"
2222
},
2323
"dependencies": {
24-
"NETStandard.Library": "1.6.0",
2524
"DotNetty.Common": {
2625
"target": "project"
2726
},
@@ -32,6 +31,7 @@
3231
"frameworks": {
3332
"netstandard1.3": {
3433
"dependencies": {
34+
"NETStandard.Library": "1.6.0",
3535
"System.Reflection.TypeExtensions": "4.1.0",
3636
"System.Diagnostics.Contracts": "4.0.1",
3737
"System.Net.Sockets": "4.1.0",

0 commit comments

Comments
 (0)