Skip to content

Commit

Permalink
RELEASE_NOTES
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jun 29, 2016
1 parent 9ea746e commit ffb3c8d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
3 changes: 2 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#### 3.4.0-alpha001 - 28.06.2016
#### 3.4.0-alpha002 - 29.06.2016
* Using Argu 3 alpha channel
* BUGFIX: Added handling for cache not being accessible - https://github.com/fsprojects/Paket/pull/1764
* BUGFIX: Fixed out-of-date check for remote files - https://github.com/fsprojects/Paket/issues/1760, https://github.com/fsprojects/Paket/issues/1762, https://github.com/fsprojects/Paket/issues/1766
* BUGFIX: Using network cache with invalid credentials should not fail restore - https://github.com/fsprojects/Paket/issues/1758
* BUGFIX: Make the copy task more robust if we can't parse target framework - https://github.com/fsprojects/Paket/issues/1756
Expand Down
11 changes: 1 addition & 10 deletions src/Paket.Core/Cache.fs
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,4 @@ type Cache =
for kv in kvPairs do
failwithf "Unknown package settings %s: %s" kv.Key kv.Value

settings

member this.IsAccessible =
try
let targetFolder = DirectoryInfo(this.Location)
if not targetFolder.Exists then
targetFolder.Create()
true
with
| _ -> false
settings
2 changes: 1 addition & 1 deletion src/Paket/Paket.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<StartArguments>update -f</StartArguments>
<StartWorkingDirectory>D:\code\Paket\integrationtests\scenarios\i001117-aws\temp</StartWorkingDirectory>
<StartArguments>install</StartArguments>
<StartWorkingDirectory>D:\code\ionide-vscode-paket</StartWorkingDirectory>
<StartWorkingDirectory>D:\temp\paket</StartWorkingDirectory>
</PropertyGroup>
<PropertyGroup>
<MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion>
Expand Down

0 comments on commit ffb3c8d

Please sign in to comment.