Skip to content

Commit 2803441

Browse files
committed
Revert "services: reset package.json version to 0.1.0 before public release"
This reverts commit 1fb29b5.
1 parent 2d0c80b commit 2803441

File tree

6 files changed

+57
-7
lines changed

6 files changed

+57
-7
lines changed

packages/services/CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# @effect-mongodb/services
2+
3+
## 2.0.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`ec45cb5`](https://github.com/doubleloop-io/effect-mongodb/commit/ec45cb5e1b8b4d8731a9cc041fa9b1bcc82c82bc), [`89b1063`](https://github.com/doubleloop-io/effect-mongodb/commit/89b1063fa0ae52b4dbfccef507f481b43330ce6e), [`7faa2c5`](https://github.com/doubleloop-io/effect-mongodb/commit/7faa2c5732f6297b7515787529bfac58c97d6082)]:
8+
9+
10+
## 1.0.4
11+
12+
### Patch Changes
13+
14+
- Updated dependencies [[`9b50f17`](https://github.com/doubleloop-io/effect-mongodb/commit/9b50f179f2c209ba24b8fbcd4753ce1708522f8f)]:
15+
16+
17+
## 1.0.3
18+
19+
### Patch Changes
20+
21+
- Updated dependencies [[`f4750b7`](https://github.com/doubleloop-io/effect-mongodb/commit/f4750b7f43f395d137f3d59f4f6e829553475c77), [`b5469c5`](https://github.com/doubleloop-io/effect-mongodb/commit/b5469c5ce92b40483feff0e3541b0acffcf4db9e), [`3f9d487`](https://github.com/doubleloop-io/effect-mongodb/commit/3f9d4877c8dcf1926da175fd6ff5b345d7926591), [`8332e0c`](https://github.com/doubleloop-io/effect-mongodb/commit/8332e0c76faf9f7594364ba73b54a37d73f98c79), [`891b6bf`](https://github.com/doubleloop-io/effect-mongodb/commit/891b6bf32e3483707166656db1d116e75bd51122), [`4e17b58`](https://github.com/doubleloop-io/effect-mongodb/commit/4e17b584406669236a0e9c2375749685981e70f0), [`bd026cf`](https://github.com/doubleloop-io/effect-mongodb/commit/bd026cf25fcbbdf3f6ae2fed4f240651626d0b7a)]:
22+
23+
24+
## 1.0.2
25+
26+
### Patch Changes
27+
28+
- Updated dependencies [[`5de41db`](https://github.com/doubleloop-io/effect-mongodb/commit/5de41dbbacb1fcfd4c38cc3e9c24a992741d94b6)]:
29+
30+
31+
## 1.0.1
32+
33+
### Patch Changes
34+
35+
- Updated dependencies [[`e167c6f`](https://github.com/doubleloop-io/effect-mongodb/commit/e167c6fe94cda5b9ee04f17496e4dd303a06769d), [`468805d`](https://github.com/doubleloop-io/effect-mongodb/commit/468805d21bc921d7690060e95e4dd447aeca149b), [`a0c6e2e`](https://github.com/doubleloop-io/effect-mongodb/commit/a0c6e2e37bb72e96e999c416602ef34b5264e2a9), [`122d816`](https://github.com/doubleloop-io/effect-mongodb/commit/122d816a53c6ea41b254e8ea76d7a8d17a44ce8f)]:
36+
37+
38+
## 1.0.0
39+
40+
### Patch Changes
41+
42+
- Updated dependencies [[`e52f494`](https://github.com/doubleloop-io/effect-mongodb/commit/e52f4944ccae2dea261138781460b3d40567eb53)]:
43+
44+
45+
## 0.0.2
46+
47+
### Patch Changes
48+
49+
- Updated dependencies [[`4287f85`](https://github.com/doubleloop-io/effect-mongodb/commit/4287f85efbd7aa91e96d0a382622b4cc46bbe748), [`00874e9`](https://github.com/doubleloop-io/effect-mongodb/commit/00874e936a7e54925c848749a54df536171587ac)]:
50+

packages/services/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@effect-mongodb/services",
33
"private": true,
44
"author": "doubleloop.io",
5-
"version": "0.1.0",
5+
"version": "2.0.0",
66
"type": "module",
77
"license": "MIT",
88
"description": "Effect services for effect-mongodb",

packages/services/src/DbInstance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @since 0.1.0
2+
* @since 0.0.1
33
*/
44
import * as MongoClient from "effect-mongodb/MongoClient"
55
import type * as MongoError from "effect-mongodb/MongoError"

packages/services/src/DbService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @since 0.1.0
2+
* @since 0.0.1
33
*/
44
import type * as Db from "effect-mongodb/Db"
55
import * as MongoClient from "effect-mongodb/MongoClient"

packages/services/src/MongoClientService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @since 0.1.0
2+
* @since 0.0.1
33
*/
44
import * as MongoClient from "effect-mongodb/MongoClient"
55
import type * as MongoError from "effect-mongodb/MongoError"

packages/services/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/**
2-
* @since 0.1.0
2+
* @since 0.0.1
33
*/
44
export * as DbInstance from "./DbInstance.js"
55

66
/**
7-
* @since 0.1.0
7+
* @since 0.0.1
88
*/
99
export * as DbService from "./DbService.js"
1010

1111
/**
12-
* @since 0.1.0
12+
* @since 0.0.1
1313
*/
1414
export * as MongoClientService from "./MongoClientService.js"

0 commit comments

Comments
 (0)