Skip to content

Commit 40b26bd

Browse files
committed
bump version
1 parent e7ebff5 commit 40b26bd

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4545
with:
46-
tag_name: v2.26.0-client-v2.21.0
47-
release_name: "AOT Client v2.21.0 NpgsqlRest v2.26.0"
46+
tag_name: v2.27.0-client-v2.22.0
47+
release_name: "AOT Client v2.22.0 NpgsqlRest v2.27.0"
4848
draft: true
4949
prerelease: true
5050

NpgsqlRestClient/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
2.21.0.0
2+
2.22.0.0
33
*/
44
{
55
//

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:25.04 AS builder
22
WORKDIR /app
33
RUN apt-get update && \
44
apt-get install -y --no-install-recommends wget ca-certificates && \
5-
wget https://github.com/vb-consulting/NpgsqlRest/releases/download/v2.26.0-client-v2.21.0/npgsqlrest-linux64 -O npgsqlrest && \
5+
wget https://github.com/vb-consulting/NpgsqlRest/releases/download/v2.27.0-client-v2.22.0/npgsqlrest-linux64 -O npgsqlrest && \
66
chmod +x npgsqlrest
77

88
FROM ubuntu:25.04

docker/readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ Outputs:
2929

3030
```
3131
Versions:
32-
.NET 9.0.4
33-
Client Build 2.21.0.0
32+
.NET 9.0.5
33+
Client Build 2.22.0.0
3434
Serilog.AspNetCore 9.0.0.0
3535
Npgsql 9.0.3.0
36-
NpgsqlRest 2.26.0.0
36+
NpgsqlRest 2.27.0.0
3737
NpgsqlRest.HttpFiles 1.3.0.0
3838
NpgsqlRest.TsClient 1.19.0.0
39-
NpgsqlRest.CrudSource 1.3.0.0
39+
NpgsqlRest.CrudSource 1.3.2.0
4040
4141
CurrentDirectory /app
4242

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "npgsqlrest",
3-
"version": "2.21.0",
3+
"version": "2.22.0",
44
"description": "Automatic REST API for PostgreSQL Databases Client Build",
55
"scripts": {
66
"postinstall": "node postinstall.js",

npm/postinstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const os = require("os");
66
const https = require("https");
77

88
const downloadDir = "../.bin/";
9-
const downloadFrom = "https://github.com/vb-consulting/NpgsqlRest/releases/download/v2.26.0-client-v2.21.0/";
9+
const downloadFrom = "https://github.com/vb-consulting/NpgsqlRest/releases/download/v2.27.0-client-v2.22.0/";
1010

1111
function download(url, to, done) {
1212
https.get(url, (response) => {

0 commit comments

Comments
 (0)