diff --git a/native-powershell b/native-powershell index 79d1e4c..76e1701 160000 --- a/native-powershell +++ b/native-powershell @@ -1 +1 @@ -Subproject commit 79d1e4c9f9211252ea82f80608d76d7713b06f2a +Subproject commit 76e17014aefe1e1ba22540e85196d845da990146 diff --git a/readme.md b/readme.md index db12fe1..4483af1 100644 --- a/readme.md +++ b/readme.md @@ -2,6 +2,7 @@ [![Go Report Card](https://goreportcard.com/badge/github.com/KnicKnic/go-powershell)](https://goreportcard.com/report/github.com/KnicKnic/go-powershell) [![gopherbadger](https://img.shields.io/badge/Go%20Coverage-99%25-brightgreen.svg?longCache=true&style=flat)](./scripts/code_coverage.ps1) [![GoDoc](https://godoc.org/github.com/KnicKnic/go-powershell/pkg/powershell?status.svg)](https://godoc.org/github.com/KnicKnic/go-powershell/pkg/powershell) +[![GitHub commits since latest release (branch)](https://img.shields.io/github/commits-since/KnicKnic/go-powershell/latest.svg)](https://github.com/KnicKnic/go-powershell/releases/latest) # Goal The goal of this project is to enable you to quickly write golang code and interact with windows via powershell and not use exec. Because powershell is a powerful scripting language you will sometimes want to call back into golang. This is also enabled by this project. Also due to sometimes wanting to host .net and powershell giving you an easy way to wrap .net modules and functions and objects, this project also enables that. diff --git a/releae_notes.md b/releae_notes.md new file mode 100644 index 0000000..0de6dbe --- /dev/null +++ b/releae_notes.md @@ -0,0 +1,24 @@ +# v0.0.2 +Still Alpha as interfaces may change, however it should be easy to convert + +1. Added support for adding commands using parameters by name +1. Made command apis internal + 1. these were lower level functions that not as easy to use +1. Added higher level functions for running a script or command + 1. Added support for named arguments and unnamed arguments +1. Support for Calling into powershell from callback + 1. Known as NestedPowershell / NestedPipeline +1. Reference dependency library from checked in file via git + 1. This makes project much easier to consume +1. Updated docs & examples + 1. Increase test coverage + 1. Remove usage of examples for internal tests +1. Standardized cleanup routines to be all call Close + 1. Previously some where called Delete +1. checked in x64 binaries to make project easier to consume + 1. binaries checked in separate repo, linked via submodule + +# v0.0.1 +Initial drop + +1. Alpha as interfaces may change, however it should be easy to convert