Skip to content

Commit

Permalink
feat: add emoji for TDD
Browse files Browse the repository at this point in the history
  • Loading branch information
seatonjiang committed Jun 17, 2021
1 parent 440553d commit 9382986
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.0.7] - 2021-06-17

- Add emoji for TDD

## [1.0.6] - 2021-05-08

- Render unicode gitmojis as image by default
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019-2020 Seaton Jiang
Copyright (c) 2019-2021 Seaton Jiang

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "gitmoji-vscode",
"displayName": "Gitmoji",
"description": "An emoji tool for your git commit messages",
"version": "1.0.6",
"version": "1.0.7",
"author": {
"name": "Seaton Jiang",
"email": "seaton@vtrois.com"
"email": "seatonjiang@vtrois.com"
},
"publisher": "Vtrois",
"license": "MIT",
Expand Down
10 changes: 8 additions & 2 deletions src/gitmoji/gitmoji.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ let Gitmoji: Array<Emoji> = [
{
emoji: "✅",
code: ":white_check_mark:",
description: "Add or update tests",
description_zh_cn: "新增或更新测试",
description: "Add, update, or pass tests",
description_zh_cn: "添加、更新或通过测试",
},
{
emoji: "🔒️",
Expand Down Expand Up @@ -389,5 +389,11 @@ let Gitmoji: Array<Emoji> = [
description: "Remove dead code",
description_zh_cn: "删除无效代码",
},
{
emoji: "🧪",
code: ":test_tube:",
description: "Add a failing test",
description_zh_cn: "添加一个失败的测试",
},
];
export default Gitmoji;

0 comments on commit 9382986

Please sign in to comment.