Skip to content

Commit

Permalink
Bump version to 5.0.0-beta.24
Browse files Browse the repository at this point in the history
  • Loading branch information
haf committed Sep 14, 2018
1 parent 49f295a commit 12fa9e8
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ nuget NodaTime
nuget RabbitMQ.Client
nuget SQLite.Interop
nuget SQLite.Interop.dll
nuget Suave
nuget Suave < 2.5
nuget System.Data.SQLite.Core
nuget System.Net.Http
nuget System.Configuration.ConfigurationManager >= 4.5.0-rc1 # topshelf
Expand Down
2 changes: 1 addition & 1 deletion src/Logary.Facade.Tests/Logary.Facade.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Logary.Facade.Tests</AssemblyName>
<Version>5.0.0-beta.23</Version>
<Version>5.0.0-beta.24</Version>
<Version>5.0.0-beta.12</Version>
<OutputType>Exe</OutputType>
<TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
Expand Down
2 changes: 1 addition & 1 deletion src/Logary.Facade/Logary.Facade.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Logary.Facade</AssemblyName>
<Version>5.0.0-beta.23</Version>
<Version>5.0.0-beta.24</Version>
<Version>5.0.0-beta.12</Version>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Logary.PerfTests/Logary.PerfTests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
<Version>5.0.0-beta.23</Version>
<Version>5.0.0-beta.24</Version>
<OutputType>Exe</OutputType>
<ServerGarbageCollection>true</ServerGarbageCollection>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
Expand Down
2 changes: 1 addition & 1 deletion src/Logary.Tests/Logary.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<Version>5.0.0-beta.23</Version>
<Version>5.0.0-beta.24</Version>
<Version>5.0.0-beta.12</Version>
<TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
<NoWarn>44</NoWarn>
Expand Down
2 changes: 1 addition & 1 deletion src/Logary/Logary.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Logary</AssemblyName>
<Version>5.0.0-beta.23</Version>
<Version>5.0.0-beta.24</Version>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<NoWarn>44;2003</NoWarn>
<DefineConstants>TYPESHAPE_EXPOSE</DefineConstants>
Expand Down
3 changes: 2 additions & 1 deletion src/targets/Logary.Targets.Mixpanel/Targets_Mixpanel.fs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ open Logary.Internals
open Logary.Internals.Chiron
open Logary.Configuration

/// A **very** simple extractor for the `userId` field/`user` field.
/// A **very** simple extractor for the `userId` field/`user` field/context value.
let extractUserIdOrUserDotId (m: Message) =
m
|> tryGetField "userId"
|> Option.orElse (m |> tryGetField "user")
|> Option.orElse (m |> tryGetContext "userId")
|> Option.map string

let extractIPField (m: Message) =
Expand Down

0 comments on commit 12fa9e8

Please sign in to comment.