Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/installation/openwrt-installation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ Those command line snippets set some variables for the `RELEASE` number, `ARCH`

Packages are installed using `opkg install` for OpenWrt 24.10 and earlier releases that use `.ipk` type packages, or `apk add` for newer OpenWrt which uses `.apk` packages.

For example, to install the c1.0.15 release:
For example, to install the c1.0.16 release:

```
RELEASE="1.0.15"
RELEASE="1.0.16"
ARCH=$(opkg print-architecture | grep ' 10$' | awk '{print $2}')
PACKAGE="csshnpd_${RELEASE}-1_${ARCH}.ipk"
wget -O ${PACKAGE} https://github.com/atsign-foundation/Atsign_OpenWRT_packages/releases/download/c${RELEASE}/${PACKAGE}
Expand Down
2 changes: 1 addition & 1 deletion packages/c/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set(ATSDK_USE_SHARED_LIBS ${NOPORTS_USE_SHARED_LIBS})
cmake_minimum_required(VERSION 3.19)
set(CMAKE_C_STANDARD 99)
cmake_policy(SET CMP0135 NEW)
project(noports VERSION 1.0.14 LANGUAGES C)
project(noports VERSION 1.0.16 LANGUAGES C)

include("${CMAKE_CURRENT_LIST_DIR}/cmake/CPackSetup.cmake")

Expand Down
2 changes: 1 addition & 1 deletion packages/c/cmake/CPackSetup.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# package info
set(CPACK_PACKAGE_NAME noports)
set(CPACK_PACKAGE_DESCRIPTION "noports source tarballs")
set(CPACK_PACKAGE_VERSION 1.0.15)
set(CPACK_PACKAGE_VERSION 1.0.16)
set(CPACK_PACKAGE_VENDOR_NAME atsign-foundation)

# cmake configuration
Expand Down
2 changes: 1 addition & 1 deletion packages/c/cmake/atsdk.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if(NOT atsdk_FOUND)
FetchContent_Declare(
atsdk
GIT_REPOSITORY https://github.com/atsign-foundation/at_c.git
GIT_TAG 319ccd1a713abc7dc546b781678ea7502bc8af9d
GIT_TAG e1fa86869b67e83f6c2fd01ea1e587260fa92251
)
endif()
FetchContent_MakeAvailable(atsdk)
Expand Down
4 changes: 2 additions & 2 deletions packages/c/conan.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"version": "0.5",
"requires": [
"mbedtls/3.6.4#b686248bee97f7bc92b88c6bc6e514a2%1752241954.6017513",
"cjson/1.7.18#e67d95071acf8902d892d89a858d31ab%1743006050.674",
"at_c/0.3.5#34b56d9094830185b0edbc3911bb9a6d%1756826801.317262"
"cjson/1.7.19#0f1d9770c2c7898029ef69e0df621838%1757507235.3264372",
"at_c/0.3.6#503288b5580e6fa378a9c97e396ecbb2%1757519344.635372"
],
"build_requires": [],
"python_requires": [],
Expand Down
4 changes: 2 additions & 2 deletions packages/c/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class at_cRecipe(ConanFile):
name = "noports"
version = "1.0.15"
version = "1.0.16"
package_type = "application"

# Optional metadata
Expand Down Expand Up @@ -44,4 +44,4 @@ def generate(self):
tc.generate()

def requirements(self):
self.requires("at_c/0.3.5")
self.requires("at_c/0.3.6")
2 changes: 1 addition & 1 deletion packages/c/graceful-shutdown-tool/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.19)
set(CMAKE_C_STANDARD 99)
cmake_policy(SET CMP0135 NEW)
project(graceful-shutdown-tool VERSION 1.0.15 LANGUAGES C)
project(graceful-shutdown-tool VERSION 1.0.16 LANGUAGES C)

include(FetchContent)
include(GNUInstallDirs)
Expand Down
2 changes: 1 addition & 1 deletion packages/c/srv/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.19)
set(CMAKE_C_STANDARD 99)
cmake_policy(SET CMP0135 NEW)

project(srv VERSION 1.0.15 LANGUAGES C)
project(srv VERSION 1.0.16 LANGUAGES C)

# 1. Variables - you are free to edit anything in this step

Expand Down
4 changes: 4 additions & 0 deletions packages/c/sshnpd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.16

- build(deps): Bump at_c to use cJSON 1.7.19

## 1.0.15

- feat: Add SBOM using Conan lock file
Expand Down
2 changes: 1 addition & 1 deletion packages/c/sshnpd/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.19)
set(CMAKE_C_STANDARD 99)
cmake_policy(SET CMP0135 NEW)
project(sshnpd VERSION 1.0.15 LANGUAGES C)
project(sshnpd VERSION 1.0.16 LANGUAGES C)

# 1. Variables - you are free to edit anything in this step

Expand Down
2 changes: 1 addition & 1 deletion packages/c/sshnpd/include/sshnpd/version.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef SSHNPD_VERSION_H
#define SSHNPD_VERSION_H
#define SSHNPD_VERSION "1.0.15"
#define SSHNPD_VERSION "1.0.16"
#endif