Skip to content

Commit 31eb8e8

Browse files
committed
version bump
1 parent bb7ff88 commit 31eb8e8

File tree

9 files changed

+13
-8
lines changed

9 files changed

+13
-8
lines changed

History.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 0.3.0
2+
3+
- `conductor.configure` replaces `Conductor.configure`
4+
- Oasis.js 0.3.0
5+
16
### 0.2.0
27

38
- `Conductor.configure('eventCallback', function (eventHandler) {})` to configure

dist/conductor-0.2.0.amd.js renamed to dist/conductor-0.3.0.amd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ define("conductor",
184184
this.oasis = new Oasis();
185185
this.conductorURL = this.options.conductorURL ||
186186
oasis.configuration.oasisURL ||
187-
'/dist/conductor-0.2.0.js.html';
187+
'/dist/conductor-0.3.0.js.html';
188188

189189
this.data = {};
190190
this.cards = {};

dist/conductor-0.2.0.js.html renamed to dist/conductor-0.3.0.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3832,7 +3832,7 @@
38323832
this.oasis = new Oasis();
38333833
this.conductorURL = this.options.conductorURL ||
38343834
oasis.configuration.oasisURL ||
3835-
'/dist/conductor-0.2.0.js.html';
3835+
'/dist/conductor-0.3.0.js.html';
38363836

38373837
this.data = {};
38383838
this.cards = {};

example/playground/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>Conductor.js Playground</title>
77
<link rel="stylesheet" href="css/playground.css">
88
<script src="../libs/jquery-1.9.1.js"></script>
9-
<script src="../../dist/conductor-0.2.0.js.html"></script>
9+
<script src="../../dist/conductor-0.3.0.js.html"></script>
1010
<script src="js/playground.js"></script>
1111
<script src="js/playground-card.js"></script>
1212
<script src="js/playground-data.js"></script>

lib/conductor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var Conductor = function(options) {
99
this.oasis = new Oasis();
1010
this.conductorURL = this.options.conductorURL ||
1111
oasis.configuration.oasisURL ||
12-
'/dist/conductor-0.2.0.js.html';
12+
'/dist/conductor-0.3.0.js.html';
1313

1414
this.data = {};
1515
this.cards = {};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "conductor",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "Conductor.js is a library, built on top of Oasis.js, for embedding untrusted rich content that can still participate in a larger ecosystem.",
55
"main": "index.js",
66
"scripts": {

test/helpers/suite.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function newConductor( options ) {
2020
options = options || {};
2121
options.testing = true;
2222
if( !options.conductorURL ) {
23-
options.conductorURL = destinationUrl + '/dist/conductor-0.2.0.js.html';
23+
options.conductorURL = destinationUrl + '/dist/conductor-0.3.0.js.html';
2424
}
2525

2626
conductor = new Conductor( options );

test/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<script src="vendor/jquery-1.9.1.js"></script>
99
<script src="lib/sinon.js"></script>
1010
<script src="lib/sinon-qunit-1.0.0.js"></script>
11-
<script src="/dist/conductor-0.2.0.js.html"></script>
11+
<script src="/dist/conductor-0.3.0.js.html"></script>
1212
<script src="/tmp/conductor_tests.js"></script>
1313
</head>
1414
<body>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
../../dist/conductor-0.2.0.js.html
1+
../../dist/conductor-0.3.0.js.html

0 commit comments

Comments
 (0)