Skip to content

Commit 15054b9

Browse files
Fix dependency injection
1 parent 1fdc43d commit 15054b9

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 3.3.1 (2022-10-26)
2+
3+
## Bug Fixes
4+
5+
* **Dependency Injection**: Fix dependency injection packages references ([#180](https://github.com/matteobortolazzo/couchdb-net/pull/180))
6+
17
# 3.3.0 (2022-10-20)
28

39
## Features

LATEST_CHANGE.md

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
## Features
1+
## Bug Fixes
22

3-
* **Bulk Delete**: Adds support to replication ([#171](https://github.com/matteobortolazzo/couchdb-net/issues/171))
4-
* **Revision Support**: Support for revisions in add and update ([#170](https://github.com/matteobortolazzo/couchdb-net/pull/170))
5-
* **Deleted Flag**: Added deleted flag on document ([#154](https://github.com/matteobortolazzo/couchdb-net/pull/154))
6-
7-
## Bug Fixes
8-
9-
* **Replication**: Added replication methods in `ICouchDatabase` interface ([#173](https://github.com/matteobortolazzo/couchdb-net/pull/173))
10-
* **Document ID**: Support IDs with special characters ([#172](https://github.com/matteobortolazzo/couchdb-net/pull/172))
3+
* **Dependency Injection**: Fix dependency injection packages references ([#180](https://github.com/matteobortolazzo/couchdb-net/pull/180))

src/CouchDB.Driver.DependencyInjection.Autofac/CouchDB.Driver.DependencyInjection.Autofac.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</ItemGroup>
3131

3232
<ItemGroup>
33-
<PackageReference Include="CouchDB.NET" Version="3.2.0" />
33+
<PackageReference Include="CouchDB.NET" Version="3.3.*" />
3434
<PackageReference Include="Autofac" Version="5.2.0" />
3535
</ItemGroup>
3636

src/CouchDB.Driver.DependencyInjection/CouchDB.Driver.DependencyInjection.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</ItemGroup>
3131

3232
<ItemGroup>
33-
<PackageReference Include="CouchDB.NET" Version="3.2.0" />
33+
<PackageReference Include="CouchDB.NET" Version="3.3.*" />
3434
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.26" />
3535
</ItemGroup>
3636

src/azure-pipelines.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
variables:
22
BuildConfiguration: Release
3-
PackageVersion: '3.3.0'
3+
PackageVersion: '3.3.1'
44

55
trigger:
66
branches:

0 commit comments

Comments
 (0)