Skip to content

Commit 60697f2

Browse files
committed
Merge branch 'develop'
2 parents 604eb6b + b4b9433 commit 60697f2

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ DotLiquid templating engine http handlers for the Giraffe web framework.
1818
- [dotLiquidTemplate](#dotliquidtemplate)
1919
- [dotLiquidHtmlTemplate](#dotliquidhtmltemplate)
2020
- [Samples](#samples)
21+
- [Nightly builds and NuGet feed](#nightly-builds-and-nuget-feed)
2122
- [More information](#more-information)
2223
- [License](#license)
2324

@@ -107,6 +108,18 @@ let app =
107108

108109
Please find a fully functioning sample application under [./samples/GiraffeDotLiquidSample/](https://github.com/giraffe-fsharp/Giraffe.DotLiquid/tree/master/samples/GiraffeDotLiquidSample).
109110

111+
## Nightly builds and NuGet feed
112+
113+
All official Giraffe packages are published to the official and public NuGet feed.
114+
115+
Unofficial builds (such as pre-release builds from the `develop` branch and pull requests) produce unofficial pre-release NuGet packages which can be pulled from the project's public NuGet feed on AppVeyor:
116+
117+
```
118+
https://ci.appveyor.com/nuget/giraffe-dotliquid
119+
```
120+
121+
If you add this source to your NuGet CLI or project settings then you can pull unofficial NuGet packages for quick feature testing or urgent hot fixes.
122+
110123
## More information
111124

112125
For more information about Giraffe, how to set up a development environment, contribution guidelines and more please visit the [main documentation](https://github.com/giraffe-fsharp/Giraffe#table-of-contents) page.

RELEASE_NOTES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
Release Notes
22
=============
33

4+
## 0.1.0-beta-310
5+
6+
Upgraded Giraffe to `0.1.0-beta-6**`.
7+
48
## 0.1.0-beta-300
59

6-
Upgraded dependencies to `Giraffe 0.1.0-beta-5**`.
10+
Upgraded dependencies to Giraffe `0.1.0-beta-5**`.
711

812
#### Breaking changes
913

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ artifacts:
1313
name: Giraffe NuGet packages
1414
nuget:
1515
account_feed: false
16-
project_feed: false
16+
project_feed: true
1717
deploy:
1818
provider: NuGet
1919
api_key:

src/Giraffe.DotLiquid/Giraffe.DotLiquid.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<AssemblyName>Giraffe.DotLiquid</AssemblyName>
4-
<Version>0.1.0-beta-300</Version>
4+
<Version>0.1.0-beta-310</Version>
55
<Description>DotLiquid templating engine http handlers for the Giraffe web framework.</Description>
66
<Copyright>Copyright 2017 Dustin Moris Gorski</Copyright>
77
<NeutralLanguage>en-GB</NeutralLanguage>
@@ -31,7 +31,7 @@
3131
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.0.*" />
3232
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.0.*" />
3333
<PackageReference Include="Microsoft.Extensions.Primitives" Version="2.0.*" />
34-
<PackageReference Include="Giraffe" Version="0.1.0-beta-5*" />
34+
<PackageReference Include="Giraffe" Version="0.1.0-beta-6*" />
3535
<PackageReference Include="DotLiquid" Version="2.0.*" />
3636
</ItemGroup>
3737

0 commit comments

Comments
 (0)