Selaa lähdekoodia

Version bump to 1.7.6

Andrew Kane 8 vuotta sitten
vanhempi
commit
7814a6ed1a
3 muutettua tiedostoa jossa 12 lisäystä ja 2 poistoa
  1. 1 1
      CHANGELOG.md
  2. 10 0
      README.md
  3. 1 1
      lib/blazer/version.rb

+ 1 - 1
CHANGELOG.md

@@ -1,4 +1,4 @@
-## 1.7.6 [unreleased]
+## 1.7.6
 
 - Added scatter chart
 - Fixed issue with false values showing up blank

+ 10 - 0
README.md

@@ -260,6 +260,8 @@ Of course, you can force a refresh at any time.
 
 Blazer will automatically generate charts based on the types of the columns returned in your query.
 
+**Note:** The order of columns matters.
+
 ### Line Chart
 
 There are two ways to generate line charts.
@@ -293,6 +295,14 @@ SELECT gender, COUNT(*) FROM users GROUP BY 1
 SELECT gender, zip_code, COUNT(*) FROM users GROUP BY 1, 2
 ```
 
+### Scatter Chart
+
+2 columns - both numeric
+
+```sql
+SELECT x, y FROM table
+```
+
 ### Maps
 
 Columns named `latitude` and `longitude` or `lat` and `lon` or `lat` and `lng` - [Example](https://blazerme.herokuapp.com/queries/15-map)

+ 1 - 1
lib/blazer/version.rb

@@ -1,3 +1,3 @@
 module Blazer
-  VERSION = "1.7.5"
+  VERSION = "1.7.6"
 end