Browse Source

Version bump to 1.7.6

Andrew Kane 8 years ago
parent
commit
7814a6ed1a
3 changed files with 12 additions and 2 deletions
  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
 - Added scatter chart
 - Fixed issue with false values showing up blank
 - 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.
 Blazer will automatically generate charts based on the types of the columns returned in your query.
 
 
+**Note:** The order of columns matters.
+
 ### Line Chart
 ### Line Chart
 
 
 There are two ways to generate line charts.
 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
 SELECT gender, zip_code, COUNT(*) FROM users GROUP BY 1, 2
 ```
 ```
 
 
+### Scatter Chart
+
+2 columns - both numeric
+
+```sql
+SELECT x, y FROM table
+```
+
 ### Maps
 ### Maps
 
 
 Columns named `latitude` and `longitude` or `lat` and `lon` or `lat` and `lng` - [Example](https://blazerme.herokuapp.com/queries/15-map)
 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
 module Blazer
-  VERSION = "1.7.5"
+  VERSION = "1.7.6"
 end
 end