Skip to content

Commit

Permalink
Merge branch 'master' into feature/talentsoft-add-push-profile
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdellahitech authored Jan 29, 2024
2 parents d7dfb1e + eb13bbe commit fe25753
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@



## v4.5.1 (2024-01-29)

### Fix

* fix: labels of job parsing (#219) ([`970fd25`](https://github.com/Riminder/hrflow-connectors/commit/970fd254476ef5e65a4f2a8c915b1e74518cbb77))


## v4.5.0 (2024-01-15)

### Feature
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hrflow-connectors"
version = "4.5.0"
version = "4.5.1"
description = "hrflow-connectors is an open source project created by HrFlow.ai to allow developers to connect easily HR ecosystem component."
license = "Apache-2.0"
authors = ["HrFlow.ai <support+hrflow_connectors@hrflow.ai>"]
Expand Down
10 changes: 5 additions & 5 deletions src/hrflow_connectors/connectors/hrflow/warehouse/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
LIST_JOBS_LIMIT = 30

LABEL_TO_JOB_FIELD = dict(
Course="courses",
Task="tasks",
Certification="certifications",
Language="languages",
course="courses",
task="tasks",
certification="certifications",
language="languages",
)
SKILL_LABEL_TO_TYPE = dict(Skill=None, HardSkill="hard", SoftSkill="soft")
SKILL_LABEL_TO_TYPE = dict(Skill=None, skill_hard="hard", skill_soft="soft")


class JobParsingException(Exception):
Expand Down

0 comments on commit fe25753

Please sign in to comment.