Update copyright year (#1502)

Update copyright year in comment headers and --version output
This commit is contained in:
Jonathan Wren 2022-06-18 11:30:56 -07:00 committed by GitHub
parent 9639c5386f
commit f5e052937c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
101 changed files with 282 additions and 80 deletions

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Build process
Scenario: Version numbers should stay in sync

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Change entry times in journal
Scenario Outline: Change time flag changes single entry timestamp
Given we use the config "<config_file>"

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Multiple journals
Scenario: Read a journal from an alternate config

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Functionality of jrnl outside of actually handling journals
Scenario: Displaying the version number

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Reading and writing to journal with custom date formats
Scenario: Dates can include a time

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Delete entries from journal
Scenario Outline: Delete flag allows deletion of single entry
Given we use the config "<config_file>"

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Encrypting and decrypting journals
Scenario: Decrypting a journal

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Journals iteracting with the file system in a way that users can see
Scenario: Adding entries to a Folder journal should generate date files

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Custom formats
Scenario Outline: Short printing via --format flag

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Importing data
Scenario Outline: --import allows new entry from stdin

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Multiple journals
Scenario: Loading a config with two journals

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Implementing Runtime Overrides for Select Configuration Keys
Scenario: Override configured editor with built-in input === editor:''

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Using the installed keyring
Scenario: Storing a password in keyring

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Searching in a journal
Scenario Outline: Displaying entries using -on today should display entries created today

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Starring entries
Scenario Outline: Starring an entry will mark it in the journal file

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Tagging
# See search.feature for tag-related searches
# And format.feature for tag-related output

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Upgrading Journals from 1.x.x to 2.x.x
Scenario: Upgrade and parse journals with square brackets

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
Feature: Writing new entries.
Scenario Outline: Multiline entry with punctuation should keep title punctuation

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from pytest_bdd import scenarios
scenarios("features/build.feature")

View file

@ -1,4 +1,4 @@
# Copyright (C) 2012-2021 jrnl contributors
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from pytest import mark

View file

@ -1,4 +1,4 @@
# Copyright (C) 2012-2021 jrnl contributors
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from collections import defaultdict

View file

@ -1,4 +1,4 @@
# Copyright (C) 2012-2021 jrnl contributors
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from datetime import datetime

View file

@ -1,4 +1,4 @@
# Copyright (C) 2012-2021 jrnl contributors
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import functools

View file

@ -1,4 +1,4 @@
# Copyright (C) 2012-2021 jrnl contributors
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import json

View file

@ -1,4 +1,4 @@
# Copyright (C) 2012-2021 jrnl contributors
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from contextlib import ExitStack

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from colorama import Fore
from colorama import Style
import pytest

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import pytest
import os

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import pytest
from jrnl.exception import JrnlException

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import sys
from unittest import mock

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from unittest import mock
import pytest

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from unittest import mock
import pytest

View file

@ -1,5 +1,6 @@
# Copyright (C) 2012-2021 jrnl contributors
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from unittest.mock import Mock
from unittest.mock import patch

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import pytest
from jrnl.override import _convert_dots_to_list

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import shlex
import pytest

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import pytest
import random
import string

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import datetime
from jrnl import time