From a99e229e7610c67a9a20ed62f26be98dc1481ebf Mon Sep 17 00:00:00 2001 From: "sen.li" Date: Thu, 9 May 2024 09:57:45 +0800 Subject: [PATCH] update version and Releasenotes of dev.1.0.5.20240508 --- tools/pnnx/Releasenotes | 5 +++-- tools/pnnx/src/py_proj.cpp | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/tools/pnnx/Releasenotes b/tools/pnnx/Releasenotes index 0dc92a05511..85dfe09c552 100644 --- a/tools/pnnx/Releasenotes +++ b/tools/pnnx/Releasenotes @@ -18,5 +18,6 @@ dev.1.0.3.20240325 dev.1.0.4.20240327 1. Replacing the native pybind11 with Python's pybind11 to avoid compilation failure of release libraries on Linux -dev.1.0.5.20240507 -1. Synchronize the main ncnn repository \ No newline at end of file +dev.1.0.5.20240508 +1. Synchronize the main ncnn repository +2. Fix missing approximate parameters of nn.GELU \ No newline at end of file diff --git a/tools/pnnx/src/py_proj.cpp b/tools/pnnx/src/py_proj.cpp index 67d0b6ece5d..5b95f17bf8d 100644 --- a/tools/pnnx/src/py_proj.cpp +++ b/tools/pnnx/src/py_proj.cpp @@ -5,7 +5,7 @@ // #include #define STRINGIFY(x) #x #define MACRO_STRINGIFY(x) STRINGIFY(x) -#define MYLIBRARY_VERSION "dev.1.0.4.20240327" +#define MYLIBRARY_VERSION "dev.1.0.5.20240508" using namespace pnnx_graph; using namespace pnnx_ir; namespace py = pybind11;