Skip to content

Commit eec767e

Browse files
committed
Prepare v6.0.1 release
1 parent 26c0aec commit eec767e

2 files changed

Lines changed: 17 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to `cybercog/laravel-sense` will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.6.1] - 2020-09-14
8+
9+
### Fixed
10+
11+
- ([#26]) Fix postgres support
12+
- ([#27]) Fix Laravel 7 & 8 support
13+
- ([#28]) Fix query explanation rendering
14+
- ([#29]) Fix DateTime SQL bindings
15+
716
## [0.6.0] - 2020-09-13
817

918
### Added
@@ -70,7 +79,8 @@ All notable changes to `cybercog/laravel-sense` will be documented in this file.
7079

7180
- Initial release
7281

73-
[Unreleased]: https://github.com/cybercog/laravel-sense/compare/0.6.0...master
82+
[Unreleased]: https://github.com/cybercog/laravel-sense/compare/0.6.1...master
83+
[0.6.1]: https://github.com/cybercog/laravel-sense/compare/0.6.0...0.6.1
7484
[0.6.0]: https://github.com/cybercog/laravel-sense/compare/0.5.3...0.6.0
7585
[0.5.3]: https://github.com/cybercog/laravel-sense/compare/0.5.2...0.5.3
7686
[0.5.2]: https://github.com/cybercog/laravel-sense/compare/0.5.1...0.5.2
@@ -81,6 +91,10 @@ All notable changes to `cybercog/laravel-sense` will be documented in this file.
8191
[0.2.1]: https://github.com/cybercog/laravel-sense/compare/0.2.0...0.2.1
8292
[0.2.0]: https://github.com/cybercog/laravel-sense/compare/0.1.0...0.2.0
8393

94+
[#29]: https://github.com/cybercog/laravel-sense/pull/29
95+
[#28]: https://github.com/cybercog/laravel-sense/pull/28
96+
[#27]: https://github.com/cybercog/laravel-sense/pull/27
97+
[#26]: https://github.com/cybercog/laravel-sense/pull/26
8498
[#25]: https://github.com/cybercog/laravel-sense/pull/25
8599
[#23]: https://github.com/cybercog/laravel-sense/pull/23
86100
[#21]: https://github.com/cybercog/laravel-sense/pull/21

resources/views/app.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<title>Sense</title>
55
<meta charset="utf-8">
6-
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet" type="text/css">
6+
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
77
<style>
88
* {
99
margin: 0;
@@ -13,7 +13,7 @@
1313
background-color: white;
1414
height: 100%;
1515
line-height: 1.4;
16-
font-family: 'Nunito', sans-serif;
16+
font-family: 'Inter', sans-serif;
1717
}
1818
.container {
1919
margin: 0 auto;

0 commit comments

Comments
 (0)