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: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0] - 2025-6-20

### Added

- Initial support for STCC4.

[Unreleased]: https://github.com/Sensirion/python-i2c-stcc4/compare/1.0.0...HEAD
[1.0.0]: https://github.com/Sensirion/python-i2c-stcc4/releases/tag/1.0.0
2 changes: 1 addition & 1 deletion examples/example_usage_linux_stcc4.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Generator: sensirion-driver-generator 1.2.0
# Product: stcc4
# Model-Version: 3.3.0
# Model-Version: 3.4.0
#

import argparse
Expand Down
2 changes: 1 addition & 1 deletion examples/example_usage_sensorbridge_stcc4.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Generator: sensirion-driver-generator 1.2.0
# Product: stcc4
# Model-Version: 3.3.0
# Model-Version: 3.4.0
#

import argparse
Expand Down
2 changes: 1 addition & 1 deletion examples/example_usage_single_shot_linux_stcc4.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Generator: sensirion-driver-generator 1.2.0
# Product: stcc4
# Model-Version: 3.3.0
# Model-Version: 3.4.0
#

import argparse
Expand Down
2 changes: 1 addition & 1 deletion examples/example_usage_single_shot_sensorbridge_stcc4.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Generator: sensirion-driver-generator 1.2.0
# Product: stcc4
# Model-Version: 3.3.0
# Model-Version: 3.4.0
#

import argparse
Expand Down
6 changes: 3 additions & 3 deletions metadata.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# driver generation metadata
generator_version: 1.2.0
model_version: 3.3.0
model_version: 3.4.0
dg_status: released
is_manually_modified: false
is_manually_modified: true
first_generated: '2025-02-24 11:47'
last_generated: '2025-06-13 09:14'
last_generated: '2025-06-20 08:02'
2 changes: 1 addition & 1 deletion sensirion_i2c_stcc4/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Generator: sensirion-driver-generator 1.2.0
# Product: stcc4
# Model-Version: 3.3.0
# Model-Version: 3.4.0
#
"""
The transfer classes specify the data that is transferred between host and sensor. The generated transfer classes
Expand Down
2 changes: 1 addition & 1 deletion sensirion_i2c_stcc4/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Generator: sensirion-driver-generator 1.2.0
# Product: stcc4
# Model-Version: 3.3.0
# Model-Version: 3.4.0
#
"""
The class Stcc4DeviceBase implements the low level interface of the sensor.
Expand Down
2 changes: 1 addition & 1 deletion sensirion_i2c_stcc4/result_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Generator: sensirion-driver-generator 1.2.0
# Product: stcc4
# Model-Version: 3.3.0
# Model-Version: 3.4.0
#
"""
The signal classes specify transformations of the raw sensor signals into a meaningful units.
Expand Down
2 changes: 1 addition & 1 deletion sensirion_i2c_stcc4/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function

version = "0.1.0"
version = "1.0.0"
2 changes: 1 addition & 1 deletion tests/test_stcc4.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Generator: sensirion-driver-generator 1.2.0
# Product: stcc4
# Model-Version: 3.3.0
# Model-Version: 3.4.0
#

import pytest
Expand Down
Loading