File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
10
10
11
11
### Added
12
12
13
+ ### Fixed
14
+
15
+ - Fixed ` Get-PnPChangeLog -Version 2.3.0 ` not returning the changelog for that version [ #3804 ] ( https://github.com/pnp/powershell/pull/3804 )
16
+
13
17
### Contributors
14
18
19
+ - Koen Zomers [ koenzomers]
20
+
15
21
## [ 2.4.0]
16
22
17
23
### Added
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ protected override void ProcessRecord()
20
20
21
21
if ( MyInvocation . BoundParameters . ContainsKey ( nameof ( Release ) ) )
22
22
{
23
- var url = $ "https://api.github.com/repos/pnp/powershell/releases/tags/{ Release . Major } .{ Release . Minor } .{ Release . Build } ";
23
+ var url = $ "https://api.github.com/repos/pnp/powershell/releases/tags/v { Release . Major } .{ Release . Minor } .{ Release . Build } ";
24
24
var response = client . GetAsync ( url ) . GetAwaiter ( ) . GetResult ( ) ;
25
25
if ( response . IsSuccessStatusCode )
26
26
{
You can’t perform that action at this time.
0 commit comments