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
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
# -- Global variables

# Builds documentation for the following tags and branches.
TAGS = ["v1.0.0", "v1.0.1", "v1.1.0", "v1.1.1"]
TAGS = ["v1.0.0", "v1.0.1", "v1.1.0", "v1.1.1", "v1.1.2"]
BRANCHES = [
"master",
]
# Sets the latest version.
LATEST_VERSION = "v1.1.1"
LATEST_VERSION = "v1.1.2"
# Set which versions are not released yet.
UNSTABLE_VERSIONS = ["master"]
# Set which versions are deprecated
DEPRECATED_VERSIONS = ["v1.0.0", "v1.0.1", "v1.1.0"]
DEPRECATED_VERSIONS = ["v1.0.0", "v1.0.1", "v1.1.0", "v1.1.1"]
# Sets custom build.
FLAGS = ["theme"]

Expand Down
2 changes: 1 addition & 1 deletion include/cassandra.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

#define CASS_VERSION_MAJOR 1
#define CASS_VERSION_MINOR 1
#define CASS_VERSION_PATCH 1
#define CASS_VERSION_PATCH 2
#define CASS_VERSION_SUFFIX ""

#ifdef __cplusplus
Expand Down
2 changes: 1 addition & 1 deletion scylla-rust-wrapper/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scylla-rust-wrapper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scylla-rust-wrapper"
version = "1.1.1"
version = "1.1.2"
edition = "2024"
description = "Wrapper for Scylla's Rust driver, exports functions to be used by C"
repository = "https://github.com/scylladb/scylla-rust-driver"
Expand Down
Loading