Skip to content

Commit

Permalink
v2.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ward committed Jan 31, 2021
1 parent 639242c commit ddf56ad
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file.

## 2.9.5 - 2021-01-31

### Changed

- Change link colors
- Extend timeout to 5 seconds for reverse lookup of short urls

## 2.9.4 - 2021-01-12

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/tweetz.core/Models/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public static class VersionInfo
{
public static string Version => "v2.9.4";
public static string Version => "v2.9.5";
public static string Copyright => "Copyright 2021, Mike Ward";
}
}
2 changes: 1 addition & 1 deletion src/tweetz.core/app.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="2.9.4.0" name="tweetz.core.exe" />
<assemblyIdentity version="2.9.5.0" name="tweetz.core.exe" />
<!-- Indicates that the application is DPI-aware and will not be automatically scaled by Windows at higher
DPIs. Windows Presentation Foundation (WPF) applications are automatically DPI-aware and do not need
to opt in. Windows Forms applications targeting .NET Framework 4.6 that opt into this setting, should
Expand Down
6 changes: 3 additions & 3 deletions src/tweetz.core/tweetz.core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
</PropertyGroup>

<PropertyGroup>
<AssemblyVersion>2.9.4</AssemblyVersion>
<FileVersion>2.9.4</FileVersion>
<Version>2.9.4</Version>
<AssemblyVersion>2.9.5</AssemblyVersion>
<FileVersion>2.9.5</FileVersion>
<Version>2.9.5</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
Expand Down
6 changes: 3 additions & 3 deletions src/twitter.core/twitter.core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
</PropertyGroup>

<PropertyGroup>
<AssemblyVersion>2.9.4</AssemblyVersion>
<FileVersion>2.9.4</FileVersion>
<Version>2.9.4</Version>
<AssemblyVersion>2.9.5</AssemblyVersion>
<FileVersion>2.9.5</FileVersion>
<Version>2.9.5</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
Expand Down
2 changes: 1 addition & 1 deletion tweetz.core.setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Tweetz"
#define MyAppVersion "2.9.4"
#define MyAppVersion "2.9.5"
#define MyAppPublisher "Mike Ward"
#define MyAppURL "https://mike-ward.net/tweetz"
#define MyAppExeName "tweetz.core.exe"
Expand Down

0 comments on commit ddf56ad

Please sign in to comment.