Hi
To automatically update the copyright year, just follow the below steps
1. Go to Appearance -> Editor -> footer.php
at line no. 189 you will find the code
<div class="copyright-txt"><?php if( of_get_option('copytext',true) != ''){ echo of_get_option('copytext',true); }; ?></div>
Now just replace this code with below code
<div class="copyright-txt">© <?php echo date('Y'); ?> <?php if( of_get_option('copytext',true) != ''){ echo of_get_option('copytext',true); }; ?></div>
2. Remove ‘© 2016’ from footer copyright section.
Regards
Grace Themes