Skip to content

Commit c0e4e0e

Browse files
committed
bump version
1 parent a8783b8 commit c0e4e0e

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-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.27.0-client-v2.22.0
47-
release_name: "AOT Client v2.22.0 NpgsqlRest v2.27.0"
46+
tag_name: v2.28.0-client-v2.23.0
47+
release_name: "AOT Client v2.23.0 NpgsqlRest v2.28.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.22.0.0
2+
2.23.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.27.0-client-v2.22.0/npgsqlrest-linux64 -O npgsqlrest && \
5+
wget https://github.com/vb-consulting/NpgsqlRest/releases/download/v2.28.0-client-v2.23.0/npgsqlrest-linux64 -O npgsqlrest && \
66
chmod +x npgsqlrest
77

88
FROM ubuntu:25.04

docker/readme.md

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

3030
```
3131
Versions:
32-
.NET 9.0.5
33-
Client Build 2.22.0.0
32+
.NET 9.0.6
33+
Client Build 2.23.0.0
34+
System.Text.Json 9.0.0.0
35+
ExcelDataReader 3.7.0.0
3436
Serilog.AspNetCore 9.0.0.0
3537
Npgsql 9.0.3.0
36-
NpgsqlRest 2.27.0.0
38+
NpgsqlRest 2.28.0.0
3739
NpgsqlRest.HttpFiles 1.3.0.0
38-
NpgsqlRest.TsClient 1.19.0.0
40+
NpgsqlRest.TsClient 1.20.0.0
3941
NpgsqlRest.CrudSource 1.3.2.0
4042
4143
CurrentDirectory /app

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.22.0",
3+
"version": "2.23.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.27.0-client-v2.22.0/";
9+
const downloadFrom = "https://github.com/vb-consulting/NpgsqlRest/releases/download/v2.28.0-client-v2.23.0/";
1010

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

0 commit comments

Comments
 (0)