Skip to content

Commit

Permalink
Update version to v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
almossawi committed Mar 30, 2015
1 parent 5ea6ca3 commit dc61404
Show file tree
Hide file tree
Showing 14 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metrics-graphics",
"version": "2.2.1",
"version": "2.3.0",
"main": [
"dist/metricsgraphics.js",
"dist/metricsgraphics.css"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions examples/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var theme = 'light';
//set the active pill and section on first load
var section = (document.location.hash) ? document.location.hash.slice(1) : 'lines';

$('#trunk').load('charts/' + section + '.html', function() {
$('#trunk').load('charts/' + section + '.htm', function() {
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});
Expand All @@ -24,7 +24,7 @@ var theme = 'light';
$(this).addClass('active');

var section = $(this).attr('id').slice(5);
$('#trunk').load('charts/' + section + '.html', function() {
$('#trunk').load('charts/' + section + '.htm', function() {
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metrics-graphics",
"version": "2.2.1",
"version": "2.3.0",
"description": "A library optimized for concise, principled data graphics and layouts",
"main": "dist/metricsgraphics.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/js/MG.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
window.MG = {version: '2.2.1'};
window.MG = {version: '2.3.0'};

0 comments on commit dc61404

Please sign in to comment.