Skip to content

Commit

Permalink
Prep for 3.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Jul 13, 2015
1 parent fbaf04f commit a4dad1e
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion examples/render/controllers/render.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ component {
}

public void function jsonObject( struct rc ) {
variables.fw.renderData( 'json', [ "An", "array", { "containing" = "data" } ] );
// variables.fw.renderData( 'json', [ "An", "array", { "containing" = "data" } ] );
variables.fw.renderData( 'json', [], 200 );
}

public void function jsonString( struct rc ) {
Expand Down
2 changes: 1 addition & 1 deletion examples/todos/assets/todo.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"6":{"status":"Complete","title":"Feed the cat"},"2":{"status":"Pending","title":"Clean the toilet"},"8":{"status":"Pending","title":"Vote in the elections"},"9":{"status":"New","title":"Test the new todos app"}}
{"6":{"status":"Complete","title":"Feed the cat"},"2":{"status":"Pending","title":"Clean the toilet"},"8":{"status":"Pending","title":"Vote in the elections"},"9":{"status":"Pending","title":"Go to Pride!"}}
2 changes: 1 addition & 1 deletion framework/WireBoxAdapter.cfc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
component extends="wirebox.system.ioc.Injector" {
variables._fw1_version = "3.1.0-rc3";
variables._fw1_version = "3.1.0";
/*
Copyright (c) 2010-2015, Sean Corfield
Expand Down
4 changes: 2 additions & 2 deletions framework/aop.cfc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
component extends="framework.ioc" {
variables._fw1_version = "3.1.0-rc3";
variables._aop1_version = "2.0.0-rc3";
variables._fw1_version = "3.1.0";
variables._aop1_version = "2.0.0";
/*
Copyright (c) 2013-2015, Mark Drew, Sean Corfield, Daniel Budde
Expand Down
4 changes: 2 additions & 2 deletions framework/beanProxy.cfc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
component {
variables._fw1_version = "3.1.0-rc3";
variables._aop1_version = "2.0.0-rc3";
variables._fw1_version = "3.1.0";
variables._aop1_version = "2.0.0";
/*
Copyright (c) 2013-2015, Mark Drew, Sean Corfield, Daniel Budde
Expand Down
4 changes: 2 additions & 2 deletions framework/ioc.cfc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
component {
variables._fw1_version = "3.1.0-rc3";
variables._di1_version = "1.1.0-rc3";
variables._fw1_version = "3.1.0";
variables._di1_version = "1.1.0";
/*
Copyright (c) 2010-2015, Sean Corfield
Expand Down
2 changes: 1 addition & 1 deletion framework/one.cfc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
component {
variables._fw1_version = "3.1.0-rc3";
variables._fw1_version = "3.1.0";
/*
Copyright (c) 2009-2015, Sean Corfield, Marcin Szczepanski, Ryan Cogswell
Expand Down

0 comments on commit a4dad1e

Please sign in to comment.