Skip to content

Commit 0b52eb1

Browse files
committed
Fix hang after creating a gist
1 parent d5ed3d3 commit 0b52eb1

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

ChangeLog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
# ChangeLog
22

3-
## 2.2.0 (unreleased)
3+
## 2.2.0 (17 Feb 2022)
44

55
### Features
66
- Add `--mapping-file <mapping-file>` option to specify a mapping file. This allows you to map the names of the files in the bundle to the names of the files in the previous bundle.
77
- Add UI to pair/unpair files and to save the current mapping into a text file which can be loaded with `--mapping-file` or `File | Open File Mappings...`.
88

9+
### Fixes
10+
- Fix hang after creating a gist
11+
912
## 2.1.0 (13 Feb 2022)
1013

1114
### Features

Comparer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ static public string Gist (DataTable table, bool openUrl = true)
226226
.WithArguments (url)
227227
.WithValidation (CommandResultValidation.None)
228228
.ExecuteAsync ()
229-
);
229+
).Result;
230230
}
231231
return url;
232232
}

0 commit comments

Comments
 (0)