From c230f91ab7a79f4f7d1c1fd79591cbd0b89c68d4 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Thu, 28 Jan 2021 16:06:28 -0500 Subject: [PATCH] meta_payroll_type: Add values for Exp:Pay:Benefits:Other. --- conservancy_beancount/plugin/meta_payroll_type.py | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/conservancy_beancount/plugin/meta_payroll_type.py b/conservancy_beancount/plugin/meta_payroll_type.py index 4cd850d..0a8d665 100644 --- a/conservancy_beancount/plugin/meta_payroll_type.py +++ b/conservancy_beancount/plugin/meta_payroll_type.py @@ -44,6 +44,8 @@ class OtherBenefitsHook(_PayrollTypeHook): ACCOUNT = 'Expenses:Payroll:Benefits:Other' VALUES_ENUM = core.MetadataEnum(METADATA_KEY, [ 'US:403b:Fees', + 'US:Education', + 'US:ProfessionalMembership', ]) diff --git a/setup.py b/setup.py index 9033b48..c51ddc4 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup setup( name='conservancy_beancount', description="Plugin, library, and reports for reading Conservancy's books", - version='1.16.0', + version='1.16.1', author='Software Freedom Conservancy', author_email='info@sfconservancy.org', license='GNU AGPLv3+',