File tree Expand file tree Collapse file tree 3 files changed +36
-2
lines changed 
docs/pages/kotlinx-rpc/topics Expand file tree Collapse file tree 3 files changed +36
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Verify Readme 
2+ 
3+ on :
4+   pull_request :
5+ 
6+ permissions :
7+   contents : read 
8+ 
9+ jobs :
10+   verify-readme :
11+     name : Run Verification 
12+     runs-on : ubuntu-latest 
13+     steps :
14+       - name : Checkout Sources 
15+         uses : actions/checkout@v5 
16+         with :
17+           fetch-depth : 0 
18+ 
19+       - name : Setup Gradle 
20+         uses : gradle/actions/setup-gradle@v4 
21+ 
22+       - name : Check Platforms Table 
23+         run : ./gradlew updateDocsChangelog --info --stacktrace 
24+ 
25+       - name : Check if readme is changed in a propper branch 
26+         run : | 
27+           if [[ -n "$(git status --porcelain | grep README.md)" ]]; then 
28+             target_branch=${{ github.base_ref }} 
29+             pr_branch=${{ github.head_ref }} 
30+             if [[ "$target_branch" == "main" && ! "$pr_branch" =~ ^release-.* ]]; then 
31+               echo "README.md change targeting main can only be done in release-* branches" 
32+               exit 1 
33+             fi 
34+           fi 
Original file line number Diff line number Diff line change 11# 0.10.0  
2- >  Published 1  October 2025
2+ >  Published 7  October 2025
33
44## Overview  
55This release brings a lot of changes, work:
Original file line number Diff line number Diff line change 33This page contains all changes throughout releases of the library.
44
55## 0.10.0  
6- >  Published 1  October 2025
6+ >  Published 7  October 2025
77
88** Full Changelog** : [ 0.9.1...0.10.0] ( https://github.com/Kotlin/kotlinx-rpc/compare/0.9.1...0.10.0 ) 
99
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments