Skip to content

Commit

Permalink
Updated documentation and bumped version to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MatrixEditor committed Sep 29, 2024
1 parent d21f29e commit 5a27851
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/sphinx/source/tutorial/first_steps.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ becomes unnecessary.
.. tab-item:: Caterpillar C
>>> obj = RGB(r=1, g=2, b=3)
>>> pack(obj, RGB.__struct__) # required as of version 2.2.0
>>> pack(obj, RGB) # required as of version 2.2.0
b'\x01\x02\x03'
Expand All @@ -118,7 +118,7 @@ or our struct class is necessary.
.. tab-item:: Caterpillar C
>>> unpack(b"\x01\x02\x03", RGB.__struct__)
>>> unpack(b"\x01\x02\x03", RGB)
RGB(r=1, g=2, b=3)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cmake.source-dir = "."

[project]
name = "caterpillar"
version = "2.2.0-rc"
version = "2.2.0"

description="Library to pack and unpack structurized binary data."
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/caterpillar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

__version__ = "2.2.0-rc"
__version__ = "2.2.0"
__release__ = None
__author__ = "MatrixEditor"

Expand Down
2 changes: 1 addition & 1 deletion src/ccaterpillar/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ CP_ENABLE_NATIVE = "1"

[project]
name = "caterpillar"
version = "2.2.0-rc"
version = "2.2.0"

description="Library to pack and unpack structurized binary data."
authors = [
Expand Down

0 comments on commit 5a27851

Please sign in to comment.