From dfc285de4d4400ce299996183896673b27c51771 Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Mon, 13 Dec 2021 05:56:17 +1000 Subject: [PATCH] Bump version and expand changelog --- CHANGELOG.md | 9 ++++++++- pyproject.toml | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a50596b..2c85a64b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog -* Add `TaggedValue` which allows the marking of a value with a tag that controls which serialization routine to apply. +## 0.7.0 - 2021-12-13 + +### Features + +* Add `pypsrp.serializer.TaggedValue` which allows the marking of a value with a tag that controls which serialization routine to apply. + * This only applys to primitive objects, like `U32` as `System.UInt32`, `SS` as `System.Security.SecureString`, etc + * For a full list of primitive tags see https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-psrp/c8c85974-ffd7-4455-84a8-e49016c20683 + ## 0.6.1 - 2021-11-19 diff --git a/pyproject.toml b/pyproject.toml index 3ccbe01c..191c9f1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pypsrp" -version = "0.6.1" +version = "0.7.0" description = "PowerShell Remoting Protocol and WinRM for Python" authors = ["Jordan Borean "] license = "MIT"