Release v2.5.3

This commit is contained in:
Sukchan Lee 2022-10-31 07:26:52 +09:00
parent 2a2d5c5cfa
commit e9db0b0889
7 changed files with 39 additions and 9 deletions

30
debian/changelog vendored
View File

@ -1,3 +1,33 @@
open5gs (2.5.3) unstable; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Mon, 31 Oct 2022 07:25:06 +0900
open5gs (2.5.3~kinetic) kinetic; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Mon, 31 Oct 2022 07:23:45 +0900
open5gs (2.5.3~jammy) jammy; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Mon, 31 Oct 2022 07:22:25 +0900
open5gs (2.5.3~focal) focal; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Mon, 31 Oct 2022 07:20:57 +0900
open5gs (2.5.3~bionic) bionic; urgency=medium
* New NF - SCP(Service Communication Proxy)
-- Sukchan Lee <acetcom@gmail.com> Mon, 31 Oct 2022 07:19:26 +0900
open5gs (2.5.2) unstable; urgency=medium open5gs (2.5.2) unstable; urgency=medium
* New NF - SCP(Service Communication Proxy) * New NF - SCP(Service Communication Proxy)

View File

@ -3,7 +3,7 @@ FROM node:19
MAINTAINER Sukchan Lee <acetcom@gmail.com> MAINTAINER Sukchan Lee <acetcom@gmail.com>
ARG PACKAGE=open5gs ARG PACKAGE=open5gs
ARG VERSION=2.5.2 ARG VERSION=2.5.3
RUN set -e; \ RUN set -e; \
cd /usr/src; \ cd /usr/src; \

View File

@ -1,6 +1,6 @@
--- ---
title: "v2.5.2 - SCP for Indirect Communication" title: "v2.5.3 - SCP for Indirect Communication"
date: 2022-10-29 12:42:00 +0900 date: 2022-10-31 07:17:00 +0900
categories: categories:
- Release - Release
tags: tags:

View File

@ -10,7 +10,7 @@
# #
PACKAGE="open5gs" PACKAGE="open5gs"
VERSION="2.5.2" VERSION="2.5.3"
print_status() { print_status() {
echo echo

View File

@ -16,7 +16,7 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>. # along with this program. If not, see <https://www.gnu.org/licenses/>.
project('open5gs', 'c', 'cpp', project('open5gs', 'c', 'cpp',
version : '2.5.2', version : '2.5.3',
license : 'AGPL-3.0-or-later', license : 'AGPL-3.0-or-later',
meson_version : '>= 0.43.0', meson_version : '>= 0.43.0',
default_options : [ default_options : [
@ -24,7 +24,7 @@ project('open5gs', 'c', 'cpp',
], ],
) )
libogslib_version = '2.5.2' libogslib_version = '2.5.3'
prefix = get_option('prefix') prefix = get_option('prefix')
bindir = join_paths(prefix, get_option('bindir')) bindir = join_paths(prefix, get_option('bindir'))

View File

@ -1,12 +1,12 @@
{ {
"name": "open5gs", "name": "open5gs",
"version": "2.5.2", "version": "2.5.3",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "open5gs", "name": "open5gs",
"version": "2.5.2", "version": "2.5.3",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"dependencies": { "dependencies": {
"axios": "^0.27.2", "axios": "^0.27.2",

View File

@ -1,6 +1,6 @@
{ {
"name": "open5gs", "name": "open5gs",
"version": "2.5.2", "version": "2.5.3",
"description": "Open5gs", "description": "Open5gs",
"main": "index.js", "main": "index.js",
"repository": "https://github.com/open5gs/open5gs/webui", "repository": "https://github.com/open5gs/open5gs/webui",