Well, I do. For those whose first thought scream “persnickety”, I am not.
Adding a dynamic script that automatically updates the year or date of your website is the least of any task for any web developer. It not only adds credibility to your website but also prevents the user from jumping to the conclusion that your website has not been updated in yea many years or abandoned.
Solutions abound for every platform. I stick with the simplest of solutions and most widely used; Javascript.
Replace your current year with the code below should solve the issue:
<script>document.write(new Date().getFullYear())</script>
Other codes exist for PHP, ASPX and more.
Enjoy!