Skip to content

Commit

Permalink
Update project version and rename accountURL for consistency
Browse files Browse the repository at this point in the history
Updated CMakeLists.txt to increment project version from 0.62.4 to 0.62.5.
Renamed key accountURL to accounturl in stream_objects.markdown and
azureblobinputstream.h to maintain consistent naming conventions.
  • Loading branch information
ptahmose committed Oct 8, 2024
1 parent 6fb48d5 commit fdde735
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.15)
cmake_policy(SET CMP0091 NEW) # enable new "MSVC runtime library selection" (https://cmake.org/cmake/help/latest/variable/CMAKE_MSVC_RUNTIME_LIBRARY.html)

project(libCZI
VERSION 0.62.4
VERSION 0.62.5
HOMEPAGE_URL "https://github.com/ZEISS/libczi"
DESCRIPTION "libCZI is an Open Source Cross-Platform C++ library to read and write CZI")

Expand Down
2 changes: 1 addition & 1 deletion Src/libCZI/Doc/stream_objects.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The reader has multiple modes of operation - mainly differing in how the authent
key | description
-------------------|---------------------------------------------------
account | The storage-account name. It will be used to create the account-URL as https://<account>.blob.core.windows.net". This key is relevant for all authentication modes except "ConnectionString".
accountURL | The complete base-URL for the storage account. If this is given, then the key 'account' is ignored (and this URL is used instead). This key is relevant for all authentication modes except "ConnectionString".
accounturl | The complete base-URL for the storage account. If this is given, then the key 'account' is ignored (and this URL is used instead). This key is relevant for all authentication modes except "ConnectionString".
containername | The container name.
blobname | The name of the blob.
connectionstring | The connection string to access the blob store. This key is relevant only for authentication mode "ConnectionString".
Expand Down
2 changes: 1 addition & 1 deletion Src/libCZI/StreamsLib/azureblobinputstream.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
/// | | This key is relevant for all authentication modes except
/// | | "ConnectionString".
/// +------------------+--------------------------------------------------------------------------
/// | acountURL | The complete base-URL for the storage account. If this is given, then the
/// | accounturl | The complete base-URL for the storage account. If this is given, then the
/// | | key 'account' is ignored (and this URL is used instead).
/// | | This key is relevant for all authentication modes except
/// | | "ConnectionString".
Expand Down

0 comments on commit fdde735

Please sign in to comment.