Skip to content

Commit

Permalink
Prep for 3.1 RC 2
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Jul 7, 2015
1 parent d4301d5 commit e826296
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion framework/WireBoxAdapter.cfc
@@ -1,5 +1,5 @@
component extends="wirebox.system.ioc.Injector" {
variables._fw1_version = "3.1-rc1";
variables._fw1_version = "3.1-rc2";
/*
Copyright (c) 2010-2015, Sean Corfield
Expand Down
12 changes: 6 additions & 6 deletions framework/aop.cfc
@@ -1,6 +1,6 @@
component extends="framework.ioc" {
variables._fw1_version = "3.1-rc1";
variables._aop1_version = "2.0-rc1";
variables._fw1_version = "3.1-rc2";
variables._aop1_version = "2.0-rc2";
/*
Copyright (c) 2013-2015, Mark Drew, Sean Corfield, Daniel Budde
Expand Down Expand Up @@ -250,9 +250,9 @@ component extends="framework.ioc" {
{
// Same cfc dotted path, must be an alias.
if (
key != arguments.beanName &&
structKeyExists(variables.beanInfo[key], "cfc") &&
structKeyExists(variables.beanInfo[arguments.beanName], "cfc") &&
key != arguments.beanName &&
structKeyExists(variables.beanInfo[key], "cfc") &&
structKeyExists(variables.beanInfo[arguments.beanName], "cfc") &&
variables.beanInfo[key].cfc == variables.beanInfo[arguments.beanName].cfc)
{
arrayAppend(aliases, key);
Expand Down Expand Up @@ -309,4 +309,4 @@ component extends="framework.ioc" {
super.setupFrameworkDefaults();
variables.config.version = variables._aop1_version & " (" & variables._di1_version & ")";
}
}
}
10 changes: 5 additions & 5 deletions framework/beanProxy.cfc
@@ -1,6 +1,6 @@
component {
variables._fw1_version = "3.1-rc1";
variables._aop1_version = "2.0-rc1";
variables._fw1_version = "3.1-rc2";
variables._aop1_version = "2.0-rc2";
/*
Copyright (c) 2013-2015, Mark Drew, Sean Corfield, Daniel Budde
Expand Down Expand Up @@ -657,7 +657,7 @@ component {
}
}


// Checks to see if the 'initMethod' was defined in the config and handles if it exists on the target bean.
if (structKeyExists(arguments.config, "initMethod") && len(arguments.config.initMethod) && structKeyExists(variables.targetBean, arguments.config.initMethod))
{
Expand Down Expand Up @@ -714,7 +714,7 @@ component {

// Only alter methods that should be intercepted. 'init()', accessors, and 'initMethod' are ignored unless specified in the methods list.
if (
(variables.interceptedMethods == "*" && key != "init" && key != initMethod && !methodInfo.isPropertyAccessor) ||
(variables.interceptedMethods == "*" && key != "init" && key != initMethod && !methodInfo.isPropertyAccessor) ||
listFindNoCase(variables.interceptedMethods, key)
)
{
Expand Down Expand Up @@ -851,4 +851,4 @@ component {
}
}
}
}
}
4 changes: 2 additions & 2 deletions framework/ioc.cfc
@@ -1,6 +1,6 @@
component {
variables._fw1_version = "3.1-rc1";
variables._di1_version = "1.1-rc1";
variables._fw1_version = "3.1-rc2";
variables._di1_version = "1.1-rc2";
/*
Copyright (c) 2010-2015, Sean Corfield
Expand Down
2 changes: 1 addition & 1 deletion framework/one.cfc
@@ -1,5 +1,5 @@
component {
variables._fw1_version = "3.1-rc1";
variables._fw1_version = "3.1-rc2";
/*
Copyright (c) 2009-2015, Sean Corfield, Marcin Szczepanski, Ryan Cogswell
Expand Down

0 comments on commit e826296

Please sign in to comment.