Bump version number to 1.12.1

This commit is contained in:
ogoffart 2025-06-16 13:32:39 +00:00
parent 2ea583d9d9
commit 92f9f0e85d
53 changed files with 72 additions and 72 deletions

View file

@ -4,7 +4,7 @@
cmake_minimum_required(VERSION 3.21)
# Select C++ and C as languages, as Corrosion needs ${CMAKE_C_COMPILER}
# for linking
project(Slint HOMEPAGE_URL "https://slint.dev/" LANGUAGES C CXX VERSION 1.12.0)
project(Slint HOMEPAGE_URL "https://slint.dev/" LANGUAGES C CXX VERSION 1.12.1)
include(FeatureSummary)
include(CMakeDependentOption)

View file

@ -23,7 +23,7 @@ import json
# -- Project information -----------------------------------------------------
# The full version, including alpha/beta/rc tags
version = "1.12.0"
version = "1.12.1"
project = f"Slint {version} C++ API"
copyright = "SixtyFPS GmbH"

View file

@ -48,7 +48,7 @@ else()
FetchContent_Declare(
Slint
GIT_REPOSITORY https://github.com/slint-ui/slint
GIT_TAG v1.12.0
GIT_TAG v1.12.1
SOURCE_SUBDIR api/cpp
)
FetchContent_MakeAvailable(Slint)

View file

@ -4,7 +4,7 @@
description: "Slint — declarative GUI toolkit"
url: "https://slint.dev"
license: "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0"
version: "1.12.0"
version: "1.12.1"
discussion: "https://github.com/slint-ui/slint/discussions"
documentation: "https://slint.dev/docs"
repository: "https://github.com/slint-ui/slint"

View file

@ -1,6 +1,6 @@
{
"name": "@slint-ui/slint-ui-binary",
"version": "1.12.0",
"version": "1.12.1",
"binaryName": "slint-ui",
"package": "@slint-ui/slint-ui-binary",
"napi": {

View file

@ -1,6 +1,6 @@
{
"name": "slint-ui",
"version": "1.12.0",
"version": "1.12.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/slint-ui/slint",

View file

@ -7,7 +7,7 @@ build-backend = "maturin"
[project]
name = "slint"
version = "1.12.0a4"
version = "1.12.1a4"
requires-python = ">= 3.12"
authors = [{ name = "Slint Team", email = "info@slint.dev" }]
classifiers = [

View file

@ -438,7 +438,7 @@ pub use i_slint_backend_selector::api::*;
/// Helper type that helps checking that the generated code is generated for the right version
#[doc(hidden)]
#[allow(non_camel_case_types)]
pub struct VersionCheck_1_12_0;
pub struct VersionCheck_1_12_1;
#[cfg(doctest)]
mod compile_fail_tests;