Skip to content

Commit e084a38

Browse files
committed
Master 4.2.0 release
1 parent 4b58c15 commit e084a38

File tree

13 files changed

+21
-21
lines changed

13 files changed

+21
-21
lines changed

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Copyright (c) 2009-2017 Sean Corfield (see individual files for any
2-
additional copyright holders)
1+
Copyright (c) 2009-2018, Sean Corfield (see individual files for any
2+
additional copyright holders)
33

44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ If you get any failures, you can run this with more verbose, but still compact o
4545

4646
# Copyright and License
4747

48-
Copyright (c) 2009-2017 Sean Corfield (and others -- see individual files for additional copyright holders). All rights reserved.
48+
Copyright (c) 2009-2018, Sean Corfield (and others -- see individual files for additional copyright holders). All rights reserved.
4949
The use and distribution terms for this software are covered by the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0) which can also be found in the file LICENSE at the root of this distribution and in individual licensed files.
5050
By using this software in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this notice, or any other, from this software.

box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name":"Framework One",
33
"slug":"fw1",
4-
"version":"4.2.0-SNAPSHOT",
4+
"version":"4.2.0",
55
"author":"Sean Corfield, Marcin Szczepanski, Ryan Cogswell",
66
"location":"framework-one/fw1#develop",
77
"createPackageDirectory":true,

examples/layouts/default.cfm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<p><a href="<cfoutput>#buildURL( ':main.default' )#</cfoutput>">Examples Home</a></p>
1313
</div>
1414
<div class="footer">
15-
<a href="https://github.com/framework-one/fw1">FW/1</a> is copyright (c) 2009-2017 Sean Corfield, Marcin Szczepanski, Ryan Cogswell -
15+
<a href="https://github.com/framework-one/fw1">FW/1</a> is copyright (c) 2009-2018, Sean Corfield, Marcin Szczepanski, Ryan Cogswell -
1616
<a href="http://www.apache.org/licenses/LICENSE-2.0">Licensed under the Apache License, Version 2.0</a><br />
1717
Logo by Kevan Stannard - You are running FW/1 version <cfoutput>#variables.framework.version#</cfoutput>.
1818
</div>

framework/Application.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
component {
2-
// Version: FW/1 4.2.0-SNAPSHOT
2+
// Version: FW/1 4.2.0
33

44
// copy this to your application root to use as your Application.cfc
55
// or incorporate the logic below into your existing Application.cfc

framework/MyApplication.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
component extends="framework.one" {
2-
// Version: FW/1 4.2.0-SNAPSHOT
2+
// Version: FW/1 4.2.0
33

44
// if you need to provide extension points, copy this to
55
// your web root, next to your Application.cfc, and add

framework/WireBoxAdapter.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
component extends="wirebox.system.ioc.Injector" {
2-
variables._fw1_version = "4.2.0-SNAPSHOT";
2+
variables._fw1_version = "4.2.0";
33
/*
4-
Copyright (c) 2010-2017, Sean Corfield
4+
Copyright (c) 2010-2018, Sean Corfield
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

framework/aop.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
component extends="framework.ioc" {
2-
variables._fw1_version = "4.2.0-SNAPSHOT";
2+
variables._fw1_version = "4.2.0";
33
variables._aop1_version = variables._fw1_version;
44
/*
5-
Copyright (c) 2013-2017, Mark Drew, Sean Corfield, Daniel Budde
5+
Copyright (c) 2013-2018, Mark Drew, Sean Corfield, Daniel Budde
66
77
Licensed under the Apache License, Version 2.0 (the "License");
88
you may not use this file except in compliance with the License.

framework/beanProxy.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
component {
2-
variables._fw1_version = "4.2.0-SNAPSHOT";
2+
variables._fw1_version = "4.2.0";
33
variables._aop1_version = variables._fw1_version;
44
/*
5-
Copyright (c) 2013-2017, Mark Drew, Sean Corfield, Daniel Budde
5+
Copyright (c) 2013-2018, Mark Drew, Sean Corfield, Daniel Budde
66
77
Licensed under the Apache License, Version 2.0 (the "License");
88
you may not use this file except in compliance with the License.

framework/facade.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
component {
2-
variables._fw1_version = "4.2.0-SNAPSHOT";
2+
variables._fw1_version = "4.2.0";
33
/*
4-
Copyright (c) 2016-2017, Sean Corfield
4+
Copyright (c) 2016-2018, Sean Corfield
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)