Skip to content

Commit 91946bc

Browse files
Merge pull request #169 from matteobortolazzo/dev
README update
2 parents 3462a99 + 40cf372 commit 91946bc

File tree

5 files changed

+70
-80
lines changed

5 files changed

+70
-80
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Downloads](https://img.shields.io/nuget/dt/CouchDB.NET.svg)](https://www.nuget.org/packages/CouchDB.NET/)
1+
[![Downloads](https://img.shields.io/nuget/dt/CouchDB.NET.svg)](https://www.nuget.org/packages/CouchDB.NET/)
22

33
# CouchDB.NET
44

@@ -731,10 +731,14 @@ Also, the configurator has `ConfigureFlurlClient` to set custom HTTP client opti
731731

732732
## Contributors
733733

734-
Thanks to [Ben Origas](https://github.com/borigas) for features, ideas and tests like SSL custom validation, multi queryable, async deadlock, cookie authenication and many others.
734+
[Ben Origas](https://github.com/borigas): Features, ideas and tests like SSL custom validation, multi queryable, async deadlock, cookie authenication and many others.
735735

736-
Thanks to [n9](https://github.com/n9) for proxy authentication, some bug fixes, suggestions and the great feedback on the changes feed feature!
736+
[n9](https://github.com/n9): Proxy authentication, some bug fixes, suggestions and the great feedback on the changes feed feature!
737737

738-
Thanks to [Marc](https://github.com/bender-ristone) for NullValueHandling, bug fixes and suggestions!
738+
[Marc](https://github.com/bender-ristone): NullValueHandling, bug fixes and suggestions!
739739

740-
Thanks to [Panos](https://github.com/panoukos41) for the help with Views and Table splitting.
740+
[Panos](https://github.com/panoukos41): Help with Views and Table splitting.
741+
742+
[Benjamin Höglinger-Stelzer](https://github.com/nefarius), [mwasson74](https://github.com/mwasson74), [Emre ÇAĞLAR](https://github.com/emrecaglar): Attachments improvments and fixes.
743+
744+
[Dhiren Sham](https://github.com/dhirensham): Implementing replication.
Lines changed: 30 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,37 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
5-
<AssemblyName>CouchDB.NET.DependencyInjection.Autofac</AssemblyName>
6-
<Authors>Matteo Bortolazzo</Authors>
7-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
8-
<Description>Dependency injection utilities for CouchDB.NET with Autofac container support.</Description>
9-
<PackageProjectUrl>https://github.com/matteobortolazzo/couchdb-net</PackageProjectUrl>
10-
<RepositoryUrl>https://github.com/matteobortolazzo/couchdb-net</RepositoryUrl>
11-
<PackageTags>couchdb,driver,nosql,netstandard,pouchdb,xamarin</PackageTags>
12-
<PackageReleaseNotes></PackageReleaseNotes>
13-
<ApplicationIcon />
14-
<OutputType>Library</OutputType>
15-
<StartupObject />
16-
<NeutralLanguage>en</NeutralLanguage>
17-
<LangVersion>8.0</LangVersion>
18-
<Nullable>enable</Nullable>
19-
<Version>3.0.0</Version>
20-
<PackageIcon>icon.png</PackageIcon>
21-
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
22-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.1</TargetFramework>
5+
<AssemblyName>CouchDB.NET.DependencyInjection.Autofac</AssemblyName>
6+
<Authors>Matteo Bortolazzo</Authors>
7+
<Description>Dependency injection utilities for CouchDB.NET with Autofac container support.</Description>
8+
<PackageProjectUrl>https://github.com/matteobortolazzo/couchdb-net</PackageProjectUrl>
9+
<RepositoryUrl>https://github.com/matteobortolazzo/couchdb-net</RepositoryUrl>
10+
<PackageTags>couchdb,driver,nosql,netstandard,pouchdb,xamarin</PackageTags>
11+
<PackageReleaseNotes></PackageReleaseNotes>
12+
<ApplicationIcon />
13+
<OutputType>Library</OutputType>
14+
<StartupObject />
15+
<NeutralLanguage>en</NeutralLanguage>
16+
<LangVersion>8.0</LangVersion>
17+
<Nullable>enable</Nullable>
18+
<PackageIcon>icon.png</PackageIcon>
19+
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
20+
</PropertyGroup>
2321

24-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
25-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
26-
<WarningsAsErrors />
27-
</PropertyGroup>
28-
29-
<ItemGroup>
30-
<None Include="Images\icon.png" Pack="true" PackagePath="\" />
31-
<None Include="License\LICENSE.txt" Pack="true" PackagePath="\" />
32-
</ItemGroup>
22+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
23+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
24+
<WarningsAsErrors />
25+
</PropertyGroup>
3326

34-
<ItemGroup>
35-
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" PrivateAssets="All" Version="3.3.1" />
36-
<PackageReference Include="Autofac" Version="5.2.0" />
37-
</ItemGroup>
27+
<ItemGroup>
28+
<None Include="Images\icon.png" Pack="true" PackagePath="\" />
29+
<None Include="License\LICENSE.txt" Pack="true" PackagePath="\" />
30+
</ItemGroup>
3831

39-
<ItemGroup>
40-
<ProjectReference Include="..\CouchDB.Driver\CouchDB.Driver.csproj" />
41-
</ItemGroup>
32+
<ItemGroup>
33+
<PackageReference Include="CouchDB.NET" Version="3.2.0" />
34+
<PackageReference Include="Autofac" Version="5.2.0" />
35+
</ItemGroup>
4236

4337
</Project>
Lines changed: 30 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,37 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
5-
<AssemblyName>CouchDB.NET.DependencyInjection</AssemblyName>
6-
<Authors>Matteo Bortolazzo</Authors>
7-
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
8-
<Description>Dependency injection utilities for CouchDB.NET</Description>
9-
<PackageProjectUrl>https://github.com/matteobortolazzo/couchdb-net</PackageProjectUrl>
10-
<RepositoryUrl>https://github.com/matteobortolazzo/couchdb-net</RepositoryUrl>
11-
<PackageTags>couchdb,driver,nosql,netstandard,pouchdb,xamarin</PackageTags>
12-
<PackageReleaseNotes></PackageReleaseNotes>
13-
<ApplicationIcon />
14-
<OutputType>Library</OutputType>
15-
<StartupObject />
16-
<NeutralLanguage>en</NeutralLanguage>
17-
<LangVersion>8.0</LangVersion>
18-
<Nullable>enable</Nullable>
19-
<Version>3.0.0</Version>
20-
<PackageIcon>icon.png</PackageIcon>
21-
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
22-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.1</TargetFramework>
5+
<AssemblyName>CouchDB.NET.DependencyInjection</AssemblyName>
6+
<Authors>Matteo Bortolazzo</Authors>
7+
<Description>Dependency injection utilities for CouchDB.NET</Description>
8+
<PackageProjectUrl>https://github.com/matteobortolazzo/couchdb-net</PackageProjectUrl>
9+
<RepositoryUrl>https://github.com/matteobortolazzo/couchdb-net</RepositoryUrl>
10+
<PackageTags>couchdb,driver,nosql,netstandard,pouchdb,xamarin</PackageTags>
11+
<PackageReleaseNotes></PackageReleaseNotes>
12+
<ApplicationIcon />
13+
<OutputType>Library</OutputType>
14+
<StartupObject />
15+
<NeutralLanguage>en</NeutralLanguage>
16+
<LangVersion>8.0</LangVersion>
17+
<Nullable>enable</Nullable>
18+
<PackageIcon>icon.png</PackageIcon>
19+
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
20+
</PropertyGroup>
2321

24-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
25-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
26-
<WarningsAsErrors />
27-
</PropertyGroup>
22+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
23+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
24+
<WarningsAsErrors />
25+
</PropertyGroup>
2826

29-
<ItemGroup>
30-
<None Include="Images\icon.png" Pack="true" PackagePath="\" />
31-
<None Include="License\LICENSE.txt" Pack="true" PackagePath="\" />
32-
</ItemGroup>
27+
<ItemGroup>
28+
<None Include="Images\icon.png" Pack="true" PackagePath="\" />
29+
<None Include="License\LICENSE.txt" Pack="true" PackagePath="\" />
30+
</ItemGroup>
3331

34-
<ItemGroup>
35-
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" PrivateAssets="All" Version="3.3.1" />
36-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.12" />
37-
</ItemGroup>
38-
39-
<ItemGroup>
40-
<ProjectReference Include="..\CouchDB.Driver\CouchDB.Driver.csproj" />
41-
</ItemGroup>
32+
<ItemGroup>
33+
<PackageReference Include="CouchDB.NET" Version="3.2.0" />
34+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.26" />
35+
</ItemGroup>
4236

4337
</Project>

src/CouchDB.Driver/CouchDB.Driver.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<TargetFramework>netstandard2.1</TargetFramework>
55
<AssemblyName>CouchDB.NET</AssemblyName>
66
<Authors>Matteo Bortolazzo</Authors>
7-
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
87
<Description>A .NET Standard driver for CouchDB.</Description>
98
<PackageProjectUrl>https://github.com/matteobortolazzo/couchdb-net</PackageProjectUrl>
109
<RepositoryUrl>https://github.com/matteobortolazzo/couchdb-net</RepositoryUrl>
@@ -16,7 +15,6 @@
1615
<NeutralLanguage>en</NeutralLanguage>
1716
<LangVersion>latest</LangVersion>
1817
<Nullable>enable</Nullable>
19-
<Version>3.0.0</Version>
2018
<PackageIcon>icon.png</PackageIcon>
2119
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
2220
</PropertyGroup>

src/azure-pipelines.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
variables:
22
BuildConfiguration: Release
3-
PackageVersion: '3.1.1'
3+
PackageVersion: '3.2.0'
44

55
trigger:
66
branches:

0 commit comments

Comments
 (0)