This is an automated email from the ASF dual-hosted git repository. twice pushed a commit to branch add-new-committers in repository https://gitbox.apache.org/repos/asf/kvrocks-website.git
commit a1213e1b49895f12d80642531ed08306a2475ce4 Author: Twice <[email protected]> AuthorDate: Wed Jul 26 06:44:12 2023 +0800 Add new committers and PMC members --- src/components/Committers/index.tsx | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/src/components/Committers/index.tsx b/src/components/Committers/index.tsx index d2da102..b9f1b43 100644 --- a/src/components/Committers/index.tsx +++ b/src/components/Committers/index.tsx @@ -9,24 +9,27 @@ type CommitterData = { // sorted by apacheId const committers: CommitterData[] = [ - {name: 'Donghui Liu', apacheId: 'alfejik', githubId: 'Alfejik'}, + {name: 'Aleks Lozoviuk', apacheId: 'aleksraiden', githubId: 'aleksraiden'}, + {name: 'Donghui Liu', apacheId: 'alfejik', githubId: 'Alfejik', isPMC: true}, + {name: 'Binbin Zhu', apacheId: 'binbin', githubId: 'enjoy-binbin'}, {name: 'Brad Lee', apacheId: 'bradlee', githubId: 'smartlee'}, {name: 'Pengbo Cai', apacheId: 'caipengbo', githubId: 'caipengbo'}, - {name: 'Liang Chen', apacheId: 'chenliang613', githubId: 'chenliang613'}, + {name: 'Liang Chen', apacheId: 'chenliang613', githubId: 'chenliang613', isPMC: true}, {name: 'Chris Zou', apacheId: 'chriszou', githubId: 'ChrisZMF'}, {name: 'Colin Chamber', apacheId: 'colinchamber', githubId: 'ColinChamber'}, - {name: 'Xiaoqiao He', apacheId: 'hexiaoqiao', githubId: 'Hexiaoqiao'}, - {name: 'Hulk Lin', apacheId: 'hulk', githubId: 'git-hulk'}, - {name: 'Jean-Baptiste Onofré', apacheId: 'jbonofre', githubId: 'jbonofre'}, + {name: 'Xiaoqiao He', apacheId: 'hexiaoqiao', githubId: 'Hexiaoqiao', isPMC: true}, + {name: 'Hulk Lin', apacheId: 'hulk', githubId: 'git-hulk', isPMC: true}, + {name: 'Jean-Baptiste Onofré', apacheId: 'jbonofre', githubId: 'jbonofre', isPMC: true}, {name: 'Jean Lai', apacheId: 'jeanbone', githubId: 'jeanbone'}, {name: 'Miuyong Liu', apacheId: 'karelrooted', githubId: 'karelrooted'}, + {name: 'Xuwei Fu', apacheId: 'maplefu', githubId: 'mapleFU'}, {name: 'Shang Xiong', apacheId: 'shang', githubId: 'shangxiaoxiong'}, {name: 'Ruixiang Tan', apacheId: 'tanruixiang', githubId: 'tanruixiang'}, - {name: 'Zili Chen', apacheId: 'tison', githubId: 'tisonkun'}, - {name: 'Yaroslav Stepanchuk', apacheId: 'torwig', githubId: 'torwig'}, - {name: 'Mingyang Liu', apacheId: 'twice', githubId: 'PragmaTwice'}, - {name: 'Von Gosling', apacheId: 'vongosling', githubId: 'vongosling'}, - {name: 'Yuan Wang', apacheId: 'wangyuan', githubId: 'ShooterIT'}, + {name: 'Zili Chen', apacheId: 'tison', githubId: 'tisonkun', isPMC: true}, + {name: 'Yaroslav Stepanchuk', apacheId: 'torwig', githubId: 'torwig', isPMC: true}, + {name: 'Mingyang Liu', apacheId: 'twice', githubId: 'PragmaTwice', isPMC: true}, + {name: 'Von Gosling', apacheId: 'vongosling', githubId: 'vongosling', isPMC: true}, + {name: 'Yuan Wang', apacheId: 'wangyuan', githubId: 'ShooterIT', isPMC: true}, {name: 'Xiaobiao Zhao', apacheId: 'xiaobiao', githubId: 'xiaobiaozhao'}, ]
