Skip to content

Commit 3dcc21d

Browse files
committed
Prepare for 0.2.3
1 parent 484bea1 commit 3dcc21d

File tree

8 files changed

+19
-13
lines changed

8 files changed

+19
-13
lines changed

MaxMind.Db.Benchmark/MaxMind.Db.Benchmark.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
<ErrorReport>prompt</ErrorReport>
5858
</PropertyGroup>
5959
<ItemGroup>
60-
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
60+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
6161
<SpecificVersion>False</SpecificVersion>
62-
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
62+
<HintPath>..\packages\Newtonsoft.Json.6.0.2\lib\net40\Newtonsoft.Json.dll</HintPath>
6363
</Reference>
6464
<Reference Include="System" />
6565
<Reference Include="System.Core">
@@ -99,4 +99,4 @@
9999
<Target Name="AfterBuild">
100100
</Target>
101101
-->
102-
</Project>
102+
</Project>

MaxMind.Db.Benchmark/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="net40" />
3+
<package id="Newtonsoft.Json" version="6.0.2" targetFramework="net40" />
44
</packages>

MaxMind.Db.Test/MaxMind.DB.Test.csproj

+4-3
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@
3333
<WarningLevel>4</WarningLevel>
3434
</PropertyGroup>
3535
<ItemGroup>
36-
<Reference Include="Newtonsoft.Json">
37-
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
36+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
37+
<SpecificVersion>False</SpecificVersion>
38+
<HintPath>..\packages\Newtonsoft.Json.6.0.2\lib\net40\Newtonsoft.Json.dll</HintPath>
3839
</Reference>
3940
<Reference Include="nunit.framework, Version=2.6.3.13283, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
4041
<SpecificVersion>False</SpecificVersion>
@@ -73,4 +74,4 @@
7374
<Target Name="AfterBuild">
7475
</Target>
7576
-->
76-
</Project>
77+
</Project>

MaxMind.Db.Test/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="net40" />
3+
<package id="Newtonsoft.Json" version="6.0.2" targetFramework="net40" />
44
<package id="NUnit" version="2.6.3" targetFramework="net40" />
55
</packages>

MaxMind.Db/MaxMind.Db.csproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,9 @@
7272
<ErrorReport>prompt</ErrorReport>
7373
</PropertyGroup>
7474
<ItemGroup>
75-
<Reference Include="Newtonsoft.Json">
76-
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
75+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
76+
<SpecificVersion>False</SpecificVersion>
77+
<HintPath>..\packages\Newtonsoft.Json.6.0.2\lib\net40\Newtonsoft.Json.dll</HintPath>
7778
</Reference>
7879
<Reference Include="System" />
7980
<Reference Include="System.Core">

MaxMind.Db/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.2.2")]
36-
[assembly: AssemblyFileVersion("0.2.2")]
35+
[assembly: AssemblyVersion("0.2.3")]
36+
[assembly: AssemblyFileVersion("0.2.3")]
3737
[assembly: InternalsVisibleTo("MaxMind.Db.Test")]

MaxMind.Db/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="net40" />
3+
<package id="Newtonsoft.Json" version="6.0.2" targetFramework="net40" />
44
</packages>

releasenotes.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Nodes #
22

3+
## 0.2.3 (2014-04-09) ##
4+
5+
* The database is now loadable from a `Stream`.
6+
37
## 0.2.2 (2013-12-24) ##
48

59
* Fixed a bug that occurred when using the memory-mode in a multi-threaded

0 commit comments

Comments
 (0)