Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
majkinetor committed Nov 9, 2017
1 parent fdaea52 commit 4916b3d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 6 additions & 2 deletions AU/Plugins/Git.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@ param(
# Git password. You can use Github Token here if you omit username.
[string] $Password,

#Force git commit when package is updated but not pushed.
# Force git commit when package is updated but not pushed.
[switch] $Force,

# Commit strategy:
# single - 1 commit with all packages
# atomic - 1 commit per package
# atomictag - 1 commit and tag per package
[ValidateSet('single', 'atomic', 'atomictag')]
[string]$commitStrategy='single'
[string]$commitStrategy = 'single'
)

[array]$packages = if ($Force) { $Info.result.updated } else { $Info.result.pushed }
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

- `au_BeforeUpdate` and `au_AfterUpdate` now provide parameter `Package` of type `[AUPackage]` which you can use to modify Nuspec data.
- Added new function `Set-DescriptionFromReadme` that is called automatically when README.md is present in the package folder ([#85](https://github.com/majkinetor/au/issues/85)). See [documentation](README.md#automatic-package-description-from-readmemd).
- New plugin: [GitReleases](https://github.com/majkinetor/au/blob/master/AU/Plugins/GitReleases.ps1)
- Plugins:
- New plugin: [GitReleases](https://github.com/majkinetor/au/blob/master/AU/Plugins/GitReleases.ps1)
- Git: new parameter `Strategy` with options on how to commit repository changes

## 2017.8.30

Expand Down

0 comments on commit 4916b3d

Please sign in to comment.