Skip to content

Commit 289e695

Browse files
authored
Update docs/scripts to use the alpha.11 release packages (PowerShell#2498)
1 parent d26b1d7 commit 289e695

11 files changed

Lines changed: 50 additions & 34 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ Changelog
44
Unreleased
55
----------
66

7+
v6.0.0-alpha.11 - 2016-10-17
8+
----------------------------
9+
- Add '-Title' to 'Get-Credential' and unify the prompt experience
10+
- Update dependency list for PowerShell Core on Linux and OS X
11+
- Fix 'powershell -Command -' to not hang and to not ignore the last command
12+
- Fix binary operator tab completion
13+
- Enable 'ConvertTo-Html' in PowerShell Core
14+
- Remove most Maximum* capacity variables
15+
- Fix 'Get-ChildItem -Hidden' to work on system hidden files on Windows
16+
- Fix 'JsonConfigFileAccessor' to handle corrupted 'PowerShellProperties.json'
17+
and defer creating the user setting directory until a write request comes
18+
- Fix variable assignment to not overwrite readonly variables
19+
- Fix 'Get-WinEvent -FilterHashtable' to work with named fields in UserData of event logs
20+
- Fix 'Get-Help -Online' in PowerShell Core on Windows
21+
- Spelling/grammar fixes
22+
723
v6.0.0-alpha.10 - 2016-09-15
824
----------------------------
925
- Fix passing escaped double quoted spaces to native executables

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ You can download and install a PowerShell package for any of the following platf
3030
| macOS 10.11 | [.pkg][rl-macos] | [Instructions][in-macos] |
3131
| Docker | | [Instructions][in-docker] |
3232

33-
[rl-windows10]: https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.10/PowerShell_6.0.0.10-alpha.10-win10-x64.msi
34-
[rl-windows81]: https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.10/PowerShell_6.0.0.10-alpha.10-win81-x64.msi
35-
[rl-ubuntu16]: https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.10/powershell_6.0.0-alpha.10-1ubuntu1.16.04.1_amd64.deb
36-
[rl-ubuntu14]: https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.10/powershell_6.0.0-alpha.10-1ubuntu1.14.04.1_amd64.deb
37-
[rl-centos]: https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.10/powershell-6.0.0_alpha.10-1.el7.centos.x86_64.rpm
38-
[rl-macOS]: https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.10/powershell-6.0.0-alpha.10.pkg
33+
[rl-windows10]: https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.11/PowerShell_6.0.0.10-alpha.11-win10-x64.msi
34+
[rl-windows81]: https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.11/PowerShell_6.0.0.10-alpha.11-win81-x64.msi
35+
[rl-ubuntu16]: https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.11/powershell_6.0.0-alpha.11-1ubuntu1.16.04.1_amd64.deb
36+
[rl-ubuntu14]: https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.11/powershell_6.0.0-alpha.11-1ubuntu1.14.04.1_amd64.deb
37+
[rl-centos]: https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.11/powershell-6.0.0_alpha.11-1.el7.centos.x86_64.rpm
38+
[rl-macOS]: https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.11/powershell-6.0.0-alpha.11.pkg
3939

4040
[installation]: docs/installation
4141
[in-windows]: docs/installation/windows.md#msi

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 6.0.0-alpha.10-{build}
1+
version: 6.0.0-alpha.11-{build}
22

33
image: Visual Studio 2015
44

demos/Azure/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This demo (Azure-Demo.ps1) shows management of Azure Compute resource using Azure Resource Management (ARM) cmdlets.
44

55
## Prerequisites ##
6-
- Install PowerShell 6.0.0-alpha.10
6+
- Install PowerShell 6.0.0-alpha.11
77
- Install AzureRM.NetCore.Preview, AzureRM.Profile.NetCore.Preview and AzureRM.Resources.NetCore.Preview modules to a local directory.
88
- The instructions for downloading these modules are in Azure-Demo.ps1 file.
99
- You have to use the command "Install-Package -Name AzureRM.NetCore.Preview -Source https://www.powershellgallery.com/api/v2 -ProviderName NuGet -ExcludeVersion -Destination <Local Directory>"

docker/release/centos7/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM centos:7
22
MAINTAINER Andrew Schwartzmeyer <andschwa@microsoft.com>
33

4-
ARG POWERSHELL_RELEASE=v6.0.0-alpha.10
5-
ARG POWERSHELL_PACKAGE=powershell-6.0.0_alpha.10-1.el7.centos.x86_64.rpm
4+
ARG POWERSHELL_RELEASE=v6.0.0-alpha.11
5+
ARG POWERSHELL_PACKAGE=powershell-6.0.0_alpha.11-1.el7.centos.x86_64.rpm
66

77
# Setup the locale
88
ENV LANG en_US.UTF-8

docker/release/ubuntu14.04/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM ubuntu:trusty
22
MAINTAINER Andrew Schwartzmeyer <andschwa@microsoft.com>
33

4-
ARG POWERSHELL_RELEASE=v6.0.0-alpha.10
5-
ARG POWERSHELL_PACKAGE=powershell_6.0.0-alpha.10-1ubuntu1.14.04.1_amd64.deb
4+
ARG POWERSHELL_RELEASE=v6.0.0-alpha.11
5+
ARG POWERSHELL_PACKAGE=powershell_6.0.0-alpha.11-1ubuntu1.14.04.1_amd64.deb
66

77
# Setup the locale
88
ENV LANG en_US.UTF-8

docker/release/ubuntu16.04/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM ubuntu:xenial
22
MAINTAINER Andrew Schwartzmeyer <andschwa@microsoft.com>
33

4-
ARG POWERSHELL_RELEASE=v6.0.0-alpha.10
5-
ARG POWERSHELL_PACKAGE=powershell_6.0.0-alpha.10-1ubuntu1.16.04.1_amd64.deb
4+
ARG POWERSHELL_RELEASE=v6.0.0-alpha.11
5+
ARG POWERSHELL_PACKAGE=powershell_6.0.0-alpha.11-1ubuntu1.16.04.1_amd64.deb
66

77
# Setup the locale
88
ENV LANG en_US.UTF-8

docs/FAQ.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ To use the `Microsoft.PowerShell.SDK` NuGet package, declare the `frameworks` se
5555
"netstandard1.6": {
5656
"imports": [ "dnxcore50", "portable-net45+win8" ],
5757
"dependencies": {
58-
"Microsoft.PowerShell.SDK": "1.0.0-alpha10"
58+
"Microsoft.PowerShell.SDK": "1.0.0-alpha11"
5959
}
6060
}
6161
}

docs/installation/linux.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You should *never* run a script without reading it first!
1111
Please **read the [download][] script first**, and then if you want to run it, use:
1212

1313
```sh
14-
bash <(curl -fsSL https://raw.githubusercontent.com/PowerShell/PowerShell/v6.0.0-alpha.10/tools/download.sh)
14+
bash <(curl -fsSL https://raw.githubusercontent.com/PowerShell/PowerShell/v6.0.0-alpha.11/tools/download.sh)
1515
```
1616

1717
Once the package is installed, run `powershell` from a terminal.
@@ -20,19 +20,19 @@ Once the package is installed, run `powershell` from a terminal.
2020
[u16]: #ubuntu-1604
2121
[cos]: #centos-7
2222
[osx]: #os-x-1011
23-
[download]: https://github.com/PowerShell/PowerShell/blob/v6.0.0-alpha.10/tools/download.sh
23+
[download]: https://github.com/PowerShell/PowerShell/blob/v6.0.0-alpha.11/tools/download.sh
2424

2525
Ubuntu 14.04
2626
============
2727

2828
Using [Ubuntu 14.04][], download the Debian package
29-
`powershell_6.0.0-alpha.10-1ubuntu1.14.04.1_amd64.deb`
29+
`powershell_6.0.0-alpha.11-1ubuntu1.14.04.1_amd64.deb`
3030
from the [releases][] page onto the Ubuntu machine.
3131

3232
Then execute the following in the terminal:
3333

3434
```sh
35-
sudo dpkg -i powershell_6.0.0-alpha.10-1ubuntu1.14.04.1_amd64.deb
35+
sudo dpkg -i powershell_6.0.0-alpha.11-1ubuntu1.14.04.1_amd64.deb
3636
sudo apt-get install -f
3737
```
3838

@@ -52,13 +52,13 @@ Ubuntu 16.04
5252
============
5353

5454
Using [Ubuntu 16.04][], download the Debian package
55-
`powershell_6.0.0-alpha.10-1ubuntu1.16.04.1_amd64.deb`
55+
`powershell_6.0.0-alpha.11-1ubuntu1.16.04.1_amd64.deb`
5656
from the [releases][] page onto the Ubuntu machine.
5757

5858
Then execute the following in the terminal:
5959

6060
```sh
61-
sudo dpkg -i powershell_6.0.0-alpha.10-1ubuntu1.16.04.1_amd64.deb
61+
sudo dpkg -i powershell_6.0.0-alpha.11-1ubuntu1.16.04.1_amd64.deb
6262
sudo apt-get install -f
6363
```
6464

@@ -80,19 +80,19 @@ CentOS 7
8080
========
8181

8282
Using [CentOS 7][], download the RPM package
83-
`powershell-6.0.0_alpha.10-1.el7.centos.x86_64.rpm`
83+
`powershell-6.0.0_alpha.11-1.el7.centos.x86_64.rpm`
8484
from the [releases][] page onto the CentOS machine.
8585

8686
Then execute the following in the terminal:
8787

8888
```sh
89-
sudo yum install ./powershell-6.0.0_alpha.10-1.el7.centos.x86_64.rpm
89+
sudo yum install ./powershell-6.0.0_alpha.11-1.el7.centos.x86_64.rpm
9090
```
9191

9292
You can also install the RPM without the intermediate step of downloading it:
9393

9494
```sh
95-
sudo yum install https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.10/powershell-6.0.0_alpha.10-1.el7.centos.x86_64.rpm
95+
sudo yum install https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.11/powershell-6.0.0_alpha.11-1.el7.centos.x86_64.rpm
9696
```
9797

9898
> This package works on Oracle Linux 7. It should work on Red Hat Enterprise Linux 7 too.
@@ -109,14 +109,14 @@ macOS 10.11
109109
===========
110110

111111
Using macOS 10.11, download the PKG package
112-
`powershell-6.0.0-alpha.10.pkg`
112+
`powershell-6.0.0-alpha.11.pkg`
113113
from the [releases][] page onto the macOS machine.
114114

115115
Either double-click the file and follow the prompts,
116116
or install it from the terminal:
117117

118118
```sh
119-
sudo installer -pkg powershell-6.0.0-alpha.10.pkg -target /
119+
sudo installer -pkg powershell-6.0.0-alpha.11.pkg -target /
120120
```
121121

122122
**Uninstallation**
@@ -184,7 +184,7 @@ You *can* run this command manually if you're having trouble with .NET Core's cr
184184
Paths
185185
=====
186186

187-
* `$PSHOME` is `/opt/microsoft/powershell/6.0.0-alpha.10/`
187+
* `$PSHOME` is `/opt/microsoft/powershell/6.0.0-alpha.11/`
188188
* User profiles will be read from `~/.config/powershell/profile.ps1`
189189
* Default profiles will be read from `$PSHOME/profile.ps1`
190190
* User modules will be read from `~/.local/share/powershell/Modules`
@@ -200,7 +200,7 @@ On Linux and macOS, the [XDG Base Directory Specification][xdg-bds] is respected
200200

201201
Note that because macOS is a derivation of BSD,
202202
instead of `/opt`, the prefix used is `/usr/local`.
203-
Thus, `$PSHOME` is `/usr/local/microsoft/powershell/6.0.0-alpha.10/`,
203+
Thus, `$PSHOME` is `/usr/local/microsoft/powershell/6.0.0-alpha.11/`,
204204
and the symlink is placed at `/usr/local/bin/powershell`.
205205

206206
[releases]: https://github.com/PowerShell/PowerShell/releases/latest

docs/learning-powershell/powershell-beginners-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ PSVersion 6.0.0-alpha
189189
PSEdition Core
190190
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
191191
BuildVersion 3.0.0.0
192-
GitCommitId v6.0.0-alpha.10
192+
GitCommitId v6.0.0-alpha.11
193193
CLRVersion
194194
WSManStackVersion 3.0
195195
PSRemotingProtocolVersion 2.3

0 commit comments

Comments
 (0)