-
Notifications
You must be signed in to change notification settings - Fork 0
release: v1.1.3 #238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
release: v1.1.3 #238
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Summary of Changes
Hello @99mini, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
이 PR은 애플리케이션의 버전 정보를 업데이트하여 v1.1.3 릴리스를 준비합니다. 안드로이드, iOS, 그리고 프로젝트의 package.json 파일에 걸쳐 버전 번호가 일관되게 조정되었습니다.
Highlights
- 안드로이드 앱 버전 업데이트: android/app/build.gradle 파일에서 versionCode를 33에서 34로, versionName을 "1.1.2.4"에서 "1.1.3"으로 변경했습니다.
- iOS 앱 버전 업데이트: ios/ClientApp.xcodeproj/project.pbxproj 파일에서 CURRENT_PROJECT_VERSION을 5에서 1로, MARKETING_VERSION을 "1.1.2"에서 "1.1.3"으로 변경했습니다. 또한 ios/ClientApp/Info.plist와 ios/ClientAppTests/Info.plist에서 CFBundleVersion을 12에서 1로 업데이트했습니다.
- package.json 버전 업데이트: 프로젝트의 package.json 파일에서 version을 "1.1.2"에서 "1.1.3"으로 변경했습니다.
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.
| Feature | Command | Description |
|---|---|---|
| Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
| Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
| Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
| Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
v1.1.3 릴리즈를 위한 버전 업데이트 PR이네요. Android, iOS, package.json의 버전이 일관되게 업데이트된 점은 좋습니다. 다만 몇 가지 개선점을 제안합니다.
가장 중요한 점은 iOS 빌드 번호를 1로 재설정하는 부분입니다. 이는 App Store 제출 시 빌드가 거부될 수 있는 위험이 있으므로, 자동으로 증가하도록 관리하는 것이 안전합니다.
또한, Android의 build.gradle 파일에 남아있는 TODO 주석을 제거하여 코드를 더 깔끔하게 유지하는 것을 제안합니다.
자세한 내용은 각 파일에 남긴 코멘트를 확인해주세요.
| CLANG_ENABLE_MODULES = YES; | ||
| CODE_SIGN_ENTITLEMENTS = ClientApp/ClientApp.entitlements; | ||
| CURRENT_PROJECT_VERSION = 5; | ||
| CURRENT_PROJECT_VERSION = 1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CURRENT_PROJECT_VERSION (빌드 번호)를 1로 재설정하고 있습니다. App Store Connect는 동일한 마케팅 버전에 대해 이전에 업로드된 빌드보다 높은 빌드 번호를 요구합니다. 따라서 빌드 번호를 수동으로 재설정하면 App Store에 빌드를 제출할 때 거부될 수 있습니다.
fastlane의 increment_build_number를 사용하고 계신 것으로 보이는데, 이 값을 소스 코드에 커밋하기보다는 CI/CD 파이프라인에서 동적으로 관리하여 각 빌드마다 자동으로 증가시키는 것이 더 안전하고 일반적인 방법입니다. 현재 방식은 수동 작업으로 인한 실수를 유발할 수 있습니다.
ios/ClientApp/Info.plist
Outdated
| </array> | ||
| <key>CFBundleVersion</key> | ||
| <string>12</string> | ||
| <string>1</string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
android/app/build.gradle
Outdated
| versionCode 34 // TODO: update version code | ||
| versionName "1.1.3" // TODO: update version name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ios/ClientAppTests/Info.plist
Outdated
| <string>????</string> | ||
| <key>CFBundleVersion</key> | ||
| <string>12</string> | ||
| <string>1</string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#️⃣연관된 이슈
📝작업 내용
스크린샷 (선택)
💬리뷰 요구사항(선택)