diff --git a/debian/changelog b/debian/changelog index 22c8d1536..9dc58540f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,27 @@ +open5gs (2.3.3) unstable; urgency=medium + + * Bug Fixed + + -- Sukchan Lee Sat, 21 Aug 2021 18:20:49 +0900 + +open5gs (2.3.3~focal) focal; urgency=medium + + * Bug Fixed + + -- Sukchan Lee Sat, 21 Aug 2021 18:19:35 +0900 + +open5gs (2.3.3~bionic) bionic; urgency=medium + + * Bug Fixed + + -- Sukchan Lee Sat, 21 Aug 2021 18:17:53 +0900 + +open5gs (2.3.3~hirsute) hirsute; urgency=medium + + * Bug Fixed + + -- Sukchan Lee Sat, 21 Aug 2021 18:16:18 +0900 + open5gs (2.3.2) unstable; urgency=medium * Bug Fixed diff --git a/docs/_posts/2021-08-21-release-v2.3.3.md b/docs/_posts/2021-08-21-release-v2.3.3.md new file mode 100644 index 000000000..d48b0a659 --- /dev/null +++ b/docs/_posts/2021-08-21-release-v2.3.3.md @@ -0,0 +1,23 @@ +--- +title: "v2.3.3 - Bug Fixed" +date: 2021-08-21 18:26:00 +0900 +categories: + - Release +tags: + - News + - Release +head_inline: "" +--- + +#### Bug Fixes +- [MME/AMF] Use Non-UE signalling connection when S1-Paging message ([#1134](https://github.com/open5gs/open5gs/issues/1134)) -- [RafalArciszewski](https://github.com/RafalArciszewski) +- [SGW-C] Fixes the shared object error ([#595](https://github.com/open5gs/open5gs/issues/595)) -- [RafalArciszewski](https://github.com/RafalArciszewski) +- [SMF] Configuration update for clarifying FALLBACK SUBNET ([#1128](https://github.com/open5gs/open5gs/issues/1128)) -- [kbarlee](https://github.com/kbarlee) +- [AMF] Fixes an invalid GSM reject in DL NAS Transport ([aligungr#375](https://github.com/aligungr/UERANSIM/issues/375)) -- [infinitydon] (https://github.com/infinitydon) +- [MME/AMF] Fixes the crash if eNB context is released and timer is expred ([#1122](https://github.com/open5gs/open5gs/issues/1122)) -- [SpeedFI-101](https://github.com/SpeedFI-101) +- [PCF] 'NULL' events on successful N5 (npcf) request ([#1120](https://github.com/open5gs/open5gs/issues/1120)) -- [oktavlachs](https://github.com/oktavlachs) +- [SMF/PCRF] Fixes the crash when number of flow > 8 ([#1108](https://github.com/open5gs/open5gs/pull/1108)) -- [herlesupreeth](https://github.com/herlesupreeth) +- [SMF] Session data was accessed when NULL resulting in crash ([#1105](https://github.com/open5gs/open5gs/pull/1105)) -- [herlesupreeth](https://github.com/herlesupreeth) + +Download -- [v2.3.3.tar.gz](https://github.com/open5gs/open5gs/archive/v2.3.3.tar.gz) +{: .notice--info} diff --git a/meson.build b/meson.build index b8b80f55a..0776f7201 100644 --- a/meson.build +++ b/meson.build @@ -16,7 +16,7 @@ # along with this program. If not, see . project('open5gs', 'c', 'cpp', - version : '2.3.2', + version : '2.3.3', license : 'AGPL-3.0-or-later', meson_version : '>= 0.43.0', default_options : [ @@ -24,7 +24,7 @@ project('open5gs', 'c', 'cpp', ], ) -libogslib_version = '2.3.2' +libogslib_version = '2.3.3' prefix = get_option('prefix') bindir = join_paths(prefix, get_option('bindir'))