Changeset - 02686b6dcfc0
[Not reviewed]
1.2.0 1.2
0 6 0
Branko Majic (branko) - 7 years ago 2016-12-03 21:45:28
branko@majic.rs
MAR-84: Preparing for release 1.2.0. Updated years in copyright notices.
6 files changed with 34 insertions and 9 deletions:
0 comments (0 inline, 0 general)
LICENSE
Show inline comments
 
Copyright (c) 2014, Branko Majic
 
Copyright (c) 2016, Branko Majic
 
All rights reserved.
 

	
 
Redistribution and use in source and binary forms, with or without modification,
docs/about.rst
Show inline comments
 
@@ -108,7 +108,7 @@ License
 

	
 
Majic Ansible Roles is released under terms of *BSD (3-Clause) License*::
 

	
 
  Copyright (c) 2015, Branko Majic
 
  Copyright (c) 2016, Branko Majic
 
  All rights reserved.
 

	
 
  Redistribution and use in source and binary forms, with or without modification,
docs/conf.py
Show inline comments
 
@@ -44,16 +44,16 @@ master_doc = 'index'
 

	
 
# General information about the project.
 
project = u'Majic Ansible Roles'
 
copyright = u'2014, Branko Majic'
 
copyright = u'2016, Branko Majic'
 

	
 
# The version info for the project you're documenting, acts as replacement for
 
# |version| and |release|, also used in various other places throughout the
 
# built documents.
 
#
 
# The short X.Y version.
 
version = '1.1-dev'
 
version = '1.2.0'
 
# The full version, including alpha/beta/rc tags.
 
release = '1.1-dev'
 
release = '1.2.0'
 

	
 
# The language for content autogenerated by Sphinx. Refer to documentation
 
# for a list of supported languages.
docs/releasenotes.rst
Show inline comments
 
@@ -2,6 +2,31 @@ Release notes
 
=============
 

	
 

	
 
1.2.0
 
-----
 

	
 
Minor fixes and features.
 

	
 
New features:
 

	
 
* ``wsgi_website`` role
 

	
 
  * Added support for providing custom proxy headers to pass on to Gunicorn
 
    server.
 

	
 
Bug-fixes:
 

	
 
* ``php_website`` role
 

	
 
  * Make sure the environment indicator is always shown on top by increasing its
 
    ``z-index`` value.
 

	
 
* ``wsgi_website`` role
 

	
 
  * Make sure the environment indicator is always shown on top by increasing its
 
    ``z-index`` value.
 

	
 

	
 
1.1.0
 
-----
 

	
docs/usage.rst
Show inline comments
 
@@ -145,7 +145,7 @@ Ansible Roles:
 
2. Checkout the correct version of the roles::
 

	
 
     cd ~/majic-ansible-roles/
 
     git checkout -b 1.1.0 1.1.0
 
     git checkout -b 1.2.0 1.2.0
 

	
 

	
 
Preparing the basic site configuration
roles/web_server/files/nginx_verify_site.sh
Show inline comments
 
@@ -2,7 +2,7 @@
 
#
 
# nginx_verify_site.sh
 
#
 
# Copyright (C) 2015, Branko Majic <branko@majic.rs>
 
# Copyright (C) 2016, Branko Majic <branko@majic.rs>
 
#
 
# This program is free software: you can redistribute it and/or modify
 
# it under the terms of the GNU General Public License as published by
 
@@ -60,7 +60,7 @@ function version() {
 
$program, version $version
 

	
 
+-----------------------------------------------------------------------+
 
| Copyright (C) 2015, Branko Majic <branko@majic.rs>                    |
 
| Copyright (C) 2016, Branko Majic <branko@majic.rs>                    |
 
|                                                                       |
 
| This program is free software: you can redistribute it and/or modify  |
 
| it under the terms of the GNU General Public License as published by  |
 
@@ -180,4 +180,4 @@ rm -f "$temp_config/nginx/sites-enabled/$name"
 
cp "$site_configuration_file" "$temp_config/nginx/sites-enabled/$name"
 

	
 
# Finally, run the test.
 
nginx -t -c "$temp_config/nginx/nginx.conf"
 
\ No newline at end of file
 
nginx -t -c "$temp_config/nginx/nginx.conf"
0 comments (0 inline, 0 general)