Skip to content

Commit

Permalink
fix: missing comma masking b2c_opt_in attribute (#175)
Browse files Browse the repository at this point in the history
* fix: missing comma masking b2c_opt_in attribute
  • Loading branch information
cdeery authored Aug 3, 2023
1 parent 786a589 commit 9689161
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Change Log
Unreleased

[1.43.4] - 2023-08-02
---------------------
* fix: Added missing comma in algolia constants that was masking the b2c_opt_in attribute.

[1.43.3] - 2023-08-02
---------------------
* fix: Fixed some implementation issues in job recommendation logic.
Expand Down
2 changes: 1 addition & 1 deletion taxonomy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
# 2. MINOR version when you add functionality in a backwards compatible manner, and
# 3. PATCH version when you make backwards compatible bug fixes.
# More details can be found at https://semver.org/
__version__ = '1.43.3'
__version__ = '1.43.4'

default_app_config = 'taxonomy.apps.TaxonomyConfig' # pylint: disable=invalid-name
4 changes: 2 additions & 2 deletions taxonomy/algolia/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
'searchable(name)',
'searchable(skills.name)',
'searchable(industry_names)',
'searchable(b2c_opt_in)'
'searchable(job_sources)'
'searchable(b2c_opt_in)',
'searchable(job_sources)',
],
}

Expand Down

0 comments on commit 9689161

Please sign in to comment.