File tree Expand file tree Collapse file tree 6 files changed +36
-12
lines changed Expand file tree Collapse file tree 6 files changed +36
-12
lines changed Original file line number Diff line number Diff line change
1
+ ## 3.3.0
2
+ - Correct issues relating to #76 and signing.
3
+ - Bump version to 3.3 for core Sink.
4
+ - Bump version to 1.2 for UDP Sink.
5
+ - Bump version to 1.2 for TCP Sink.
6
+
7
+ ## 3.2.0
8
+ - Remove TravisCI for Linux builds
9
+ - Add AppVeyor for Linux Builds
10
+ - [ #76 ] ( https://github.com/serilog/serilog-sinks-splunk/issues/76 )
11
+
12
+ ## 3.1.0
13
+ - [ #105 ] ( https://github.com/serilog/serilog-sinks-splunk/pull/105 )
14
+
1
15
## 3.0.0
2
16
- [ #76 ] ( https://github.com/serilog/serilog-sinks-splunk/issues/76 ) Add strong naming/signing to ` Serilog.Sinks.Splunk ` .
3
17
- [ #88 ] ( https://github.com/serilog/serilog-sinks-splunk/issues/88 ) Split Sinks into separate packages for maintainability.
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<Description >The Splunk Sink for Serilog</Description >
5
- <VersionPrefix >3.2 .0</VersionPrefix >
5
+ <VersionPrefix >3.3 .0</VersionPrefix >
6
6
<Authors >Matthew Erbs, Serilog Contributors</Authors >
7
7
<TargetFrameworks >net45;netstandard1.1;netstandard2.0</TargetFrameworks >
8
8
<GenerateDocumentationFile >true</GenerateDocumentationFile >
15
15
<RepositoryUrl >https://github.com/serilog/serilog-sinks-splunk</RepositoryUrl >
16
16
<RepositoryType >git</RepositoryType >
17
17
<AssemblyOriginatorKeyFile >../../assets/Serilog.snk</AssemblyOriginatorKeyFile >
18
- <PublicSign >true</PublicSign >
18
+ <PublicSign Condition = " '$(OS)' != 'Windows_NT' " >true</PublicSign >
19
19
<SignAssembly >true</SignAssembly >
20
20
<TreatWarningsAsErrors >true</TreatWarningsAsErrors >
21
21
</PropertyGroup >
Original file line number Diff line number Diff line change 1
1
using System . Reflection ;
2
2
using System . Runtime . CompilerServices ;
3
3
4
- [ assembly: AssemblyVersion ( "2.0.0.0" ) ]
5
-
6
- [ assembly: InternalsVisibleTo ( "Serilog.Sinks.Splunk.Tests" ) ]
4
+ [ assembly: InternalsVisibleTo ( "Serilog.Sinks.Splunk.Tests, PublicKey=" +
5
+ "0024000004800000940000000602000000240000525341310004000001000100fb8d13fd344a1c" +
6
+ "6fe0fe83ef33c1080bf30690765bc6eb0df26ebfdf8f21670c64265b30db09f73a0dea5b3db4c9" +
7
+ "d18dbf6d5a25af5ce9016f281014d79dc3b4201ac646c451830fc7e61a2dfd633d34c39f87b818" +
8
+ "94191652df5ac63cc40c77f3542f702bda692e6e8a9158353df189007a49da0f3cfd55eb250066" +
9
+ "b19485ec" ) ]
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<Description >The Splunk TCP Sink for Serilog</Description >
5
- <VersionPrefix >1.1 .0</VersionPrefix >
5
+ <VersionPrefix >1.2 .0</VersionPrefix >
6
6
<Authors >Matthew Erbs, Serilog Contributors</Authors >
7
7
<TargetFrameworks >net45;</TargetFrameworks >
8
8
<GenerateDocumentationFile >true</GenerateDocumentationFile >
14
14
<PackageLicenseUrl >http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl >
15
15
<RepositoryUrl >https://github.com/serilog/serilog-sinks-splunk</RepositoryUrl >
16
16
<RepositoryType >git</RepositoryType >
17
- <GenerateAssemblyVersionAttribute >false</GenerateAssemblyVersionAttribute >
17
+ <AssemblyOriginatorKeyFile >../../assets/Serilog.snk</AssemblyOriginatorKeyFile >
18
+ <PublicSign Condition =" '$(OS)' != 'Windows_NT' " >true</PublicSign >
19
+ <SignAssembly >true</SignAssembly >
18
20
</PropertyGroup >
19
21
20
22
<ItemGroup >
Original file line number Diff line number Diff line change 1
1
using System . Reflection ;
2
2
using System . Runtime . CompilerServices ;
3
3
4
- [ assembly: AssemblyVersion ( "2.0.0.0" ) ]
5
-
6
- [ assembly: InternalsVisibleTo ( "Serilog.Sinks.Splunk.Tests" ) ]
4
+ [ assembly: InternalsVisibleTo ( "Serilog.Sinks.Splunk.Tests, PublicKey=" +
5
+ "0024000004800000940000000602000000240000525341310004000001000100fb8d13fd344a1c" +
6
+ "6fe0fe83ef33c1080bf30690765bc6eb0df26ebfdf8f21670c64265b30db09f73a0dea5b3db4c9" +
7
+ "d18dbf6d5a25af5ce9016f281014d79dc3b4201ac646c451830fc7e61a2dfd633d34c39f87b818" +
8
+ "94191652df5ac63cc40c77f3542f702bda692e6e8a9158353df189007a49da0f3cfd55eb250066" +
9
+ "b19485ec" ) ]
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<Description >The Splunk UDP Sink for Serilog</Description >
5
- <VersionPrefix >1.1 .0</VersionPrefix >
5
+ <VersionPrefix >1.2 .0</VersionPrefix >
6
6
<Authors >Matthew Erbs, Serilog Contributors</Authors >
7
7
<TargetFrameworks >net45</TargetFrameworks >
8
8
<GenerateDocumentationFile >true</GenerateDocumentationFile >
14
14
<PackageLicenseUrl >http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl >
15
15
<RepositoryUrl >https://github.com/serilog/serilog-sinks-splunk</RepositoryUrl >
16
16
<RepositoryType >git</RepositoryType >
17
- <GenerateAssemblyVersionAttribute >false</GenerateAssemblyVersionAttribute >
17
+ <AssemblyOriginatorKeyFile >../../assets/Serilog.snk</AssemblyOriginatorKeyFile >
18
+ <PublicSign Condition =" '$(OS)' != 'Windows_NT' " >true</PublicSign >
19
+ <SignAssembly >true</SignAssembly >
18
20
</PropertyGroup >
19
21
20
22
<ItemGroup >
You can’t perform that action at this time.
0 commit comments