Skip to content

Commit 1367a9b

Browse files
committed
Bumped to 0.17.0-alpha.5
Added also a note on manual install of pg package in README
1 parent 46de917 commit 1367a9b

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Pongo - Mongo but on Postgres and with strong consistency benefits.
1111
Install Pongo as an npm module and save it to your package.json:
1212

1313
```bash
14-
npm install @event-driven-io/pongo
14+
npm install @event-driven-io/pongo pg @types/pg
1515
```
1616

1717
Read also [introduction article on my blog](https://event-driven.io/en/introducting_pongo/?utm_source=pongo_github) for more context.

src/docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pongo is a MongoDB on Postgres and with strong consistency benefits.
99
Install Pongo as an npm module and save it to your package.json:
1010

1111
```bash
12-
npm install @event-driven-io/pongo
12+
npm install @event-driven-io/pongo pg @types/pg
1313
```
1414

1515
Read also [introduction article on my blog](https://event-driven.io/en/introducting_pongo/?utm_source=pongo_github) for more context.

src/package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@event-driven-io/pongo-core",
3-
"version": "0.17.0-alpha.4",
3+
"version": "0.17.0-alpha.5",
44
"description": "Pongo - Mongo with strong consistency on top of Postgres",
55
"type": "module",
66
"engines": {

src/packages/dumbo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@event-driven-io/dumbo",
3-
"version": "0.13.0-alpha.4",
3+
"version": "0.13.0-alpha.5",
44
"description": "Dumbo - tools for dealing with Relational Databases",
55
"type": "module",
66
"scripts": {

src/packages/pongo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@event-driven-io/pongo",
3-
"version": "0.17.0-alpha.4",
3+
"version": "0.17.0-alpha.5",
44
"description": "Pongo - Mongo with strong consistency on top of Postgres",
55
"type": "module",
66
"scripts": {
@@ -113,7 +113,7 @@
113113
"pongo": "./dist/cli.js"
114114
},
115115
"peerDependencies": {
116-
"@event-driven-io/dumbo": "0.13.0-alpha.4",
116+
"@event-driven-io/dumbo": "0.13.0-alpha.5",
117117
"@types/mongodb": "^4.0.7",
118118
"@types/pg": "^8.11.11",
119119
"@types/sqlite3": "^5.1.0",

src/packages/pongo/src/commandLine/shell.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const startRepl = async (options: {
124124
setLogLevel(process.env.DUMBO_LOG_LEVEL ?? options.logging.logLevel);
125125
setLogStyle(process.env.DUMBO_LOG_STYLE ?? options.logging.logStyle);
126126

127-
console.log(color.green('Starting Pongo Shell (version: 0.17.0-alpha.4)'));
127+
console.log(color.green('Starting Pongo Shell (version: 0.17.0-alpha.5)'));
128128

129129
if (options.logging.printOptions) {
130130
console.log(color.green('With Options:'));

0 commit comments

Comments
 (0)