Skip to content

Commit b734318

Browse files
authored
2024 -> 2025 (#75)
1 parent a921ce8 commit b734318

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2024 Jonathan Pearlin
189+
Copyright 2025 Jonathan Pearlin
190190

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ Likewise, if you find an issue with the site itself (bug, typo or other problem)
4747

4848
## License
4949

50-
Copyright 2018-2024. Release under the [Apache 2.0 license](LICENSE).
50+
Copyright 2018-2025. Release under the [Apache 2.0 license](LICENSE).

web/src/__test__/shared/Footer.test.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ describe('footer tests', () => {
5757
const twitterFollow = screen.getByTestId("twitter-follow");
5858
expect(twitterFollow).toHaveAttribute("title", "Follow on Twitter");
5959
const copyright = screen.getByTestId("footer-copyright-test");
60-
expect(copyright).toHaveTextContent(2024 / About / Terms / GitHub');
60+
expect(copyright).toHaveTextContent(2025 / About / Terms / GitHub');
6161
const lastUpdated = screen.getByTestId("footer-last-updated-test");
6262
expect(lastUpdated).toHaveTextContent('Last Updated: ' + process.env.REACT_APP_UPDATED_AT);
6363
})
@@ -83,7 +83,7 @@ describe('footer tests', () => {
8383
const twitterFollow = screen.getByTestId("twitter-follow");
8484
expect(twitterFollow).toHaveAttribute("title", "Follow on Twitter");
8585
const copyright = screen.getByTestId("footer-copyright-test");
86-
expect(copyright).toHaveTextContent(2024 /');
86+
expect(copyright).toHaveTextContent(2025 /');
8787
const lastUpdated = screen.getByTestId("footer-last-updated-test");
8888
expect(lastUpdated).toHaveTextContent('Last Updated');
8989
const lastUpdatedTimestamp = screen.getByTestId("footer-last-updated-timestamp-test");

web/src/shared/Footer.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default class Footer extends React.Component<any, any> {
4343
</div>
4444
</div>
4545
<div data-testid="footer-copyright-test">
46-
<span>&copy; 2024 / <Link to="/about">About</Link> / <Link to="/terms">Terms</Link> / <a href="https://github.com/jdpgrailsdev/oasis-timeline" target="_blank" rel="noopener noreferrer">GitHub</a></span>
46+
<span>&copy; 2025 / <Link to="/about">About</Link> / <Link to="/terms">Terms</Link> / <a href="https://github.com/jdpgrailsdev/oasis-timeline" target="_blank" rel="noopener noreferrer">GitHub</a></span>
4747
</div>
4848
<div data-testid="footer-last-updated-test">
4949
<span>Last Updated: {process.env.REACT_APP_UPDATED_AT}</span>
@@ -67,7 +67,7 @@ export default class Footer extends React.Component<any, any> {
6767
</span>
6868
</div>
6969
</div>
70-
<span data-testid="footer-copyright-test">&copy; 2024 / <Link to="/about">About</Link> / <Link
70+
<span data-testid="footer-copyright-test">&copy; 2025 / <Link to="/about">About</Link> / <Link
7171
to="/terms">Terms</Link> / <a href="https://github.com/jdpgrailsdev/oasis-timeline"
7272
target="_blank" rel="noopener noreferrer">GitHub</a></span>
7373
<span data-testid="footer-last-updated-test">Last Updated</span>

0 commit comments

Comments
 (0)